Skip to content

Latest commit

 

History

History
83 lines (62 loc) · 1.2 KB

File metadata and controls

83 lines (62 loc) · 1.2 KB

fortios_fmg_system_dns

back

Index

Terraform

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

top

Example Usage

module "fortios_fmg_system_dns" {
  source = "./modules/fortios/r/fortios_fmg_system_dns"

  # primary - (optional) is a type of string
  primary = null
  # secondary - (optional) is a type of string
  secondary = null
}

top

Variables

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

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

top

Resource

resource "fortios_fmg_system_dns" "this" {
  # primary - (optional) is a type of string
  primary = var.primary
  # secondary - (optional) is a type of string
  secondary = var.secondary
}

top

Outputs

output "id" {
  description = "returns a string"
  value       = fortios_fmg_system_dns.this.id
}

output "this" {
  value = fortios_fmg_system_dns.this
}

top