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