Skip to content

Latest commit

 

History

History
93 lines (70 loc) · 1.4 KB

File metadata and controls

93 lines (70 loc) · 1.4 KB

fortios_nsxt_setting

back

Index

Terraform

terraform {
  required_providers {
    fortios = ">= 1.11.0"
  }
}

top

Example Usage

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

Variables

variable "liveness" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "service" {
  description = "(optional)"
  type        = string
  default     = null
}

top

Resource

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

Outputs

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