back
terraform {
required_providers {
fortios = ">= 1.11.0"
}
}
top
module "fortios_system_zone" {
source = "./modules/fortios/d/fortios_system_zone"
# name - (required) is a type of string
name = null
}
top
variable "name" {
description = "(required)"
type = string
}
top
data "fortios_system_zone" "this" {
# name - (required) is a type of string
name = var.name
}
top
output "description" {
description = "returns a string"
value = data.fortios_system_zone.this.description
}
output "id" {
description = "returns a string"
value = data.fortios_system_zone.this.id
}
output "interface" {
description = "returns a list of object"
value = data.fortios_system_zone.this.interface
}
output "intrazone" {
description = "returns a string"
value = data.fortios_system_zone.this.intrazone
}
output "tagging" {
description = "returns a list of object"
value = data.fortios_system_zone.this.tagging
}
output "this" {
value = fortios_system_zone.this
}
top