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