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