fortios_system_vdomexception
back
terraform {
required_providers {
fortios = " >= 1.11.0"
}
}
top
module "fortios_system_vdomexception" {
source = " ./modules/fortios/d/fortios_system_vdomexception"
# fosid - (required) is a type of number
fosid = null
}
top
variable "fosid" {
description = " (required)"
type = number
}
top
data "fortios_system_vdomexception" "this" {
# fosid - (required) is a type of number
fosid = var. fosid
}
top
output "id" {
description = " returns a string"
value = data. fortios_system_vdomexception . this . id
}
output "object" {
description = " returns a string"
value = data. fortios_system_vdomexception . this . object
}
output "oid" {
description = " returns a number"
value = data. fortios_system_vdomexception . this . oid
}
output "scope" {
description = " returns a string"
value = data. fortios_system_vdomexception . this . scope
}
output "vdom" {
description = " returns a list of object"
value = data. fortios_system_vdomexception . this . vdom
}
output "this" {
value = fortios_system_vdomexception. this
}
top