back
terraform {
required_providers {
fortios = ">= 1.11.0"
}
}
top
module "fortios_system_vdomlink" {
source = "./modules/fortios/r/fortios_system_vdomlink"
# name - (optional) is a type of string
name = null
# type - (optional) is a type of string
type = null
# vcluster - (optional) is a type of string
vcluster = null
}
top
variable "name" {
description = "(optional)"
type = string
default = null
}
variable "type" {
description = "(optional)"
type = string
default = null
}
variable "vcluster" {
description = "(optional)"
type = string
default = null
}
top
resource "fortios_system_vdomlink" "this" {
# name - (optional) is a type of string
name = var.name
# type - (optional) is a type of string
type = var.type
# vcluster - (optional) is a type of string
vcluster = var.vcluster
}
top
output "id" {
description = "returns a string"
value = fortios_system_vdomlink.this.id
}
output "name" {
description = "returns a string"
value = fortios_system_vdomlink.this.name
}
output "type" {
description = "returns a string"
value = fortios_system_vdomlink.this.type
}
output "vcluster" {
description = "returns a string"
value = fortios_system_vdomlink.this.vcluster
}
output "this" {
value = fortios_system_vdomlink.this
}
top