Skip to content

Latest commit

 

History

History
82 lines (60 loc) · 1.19 KB

File metadata and controls

82 lines (60 loc) · 1.19 KB

fortios_system_dnsserver

back

Index

Terraform

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

top

Example Usage

module "fortios_system_dnsserver" {
  source = "./modules/fortios/d/fortios_system_dnsserver"

  # name - (required) is a type of string
  name = null
}

top

Variables

variable "name" {
  description = "(required)"
  type        = string
}

top

Datasource

data "fortios_system_dnsserver" "this" {
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

output "dnsfilter_profile" {
  description = "returns a string"
  value       = data.fortios_system_dnsserver.this.dnsfilter_profile
}

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

output "mode" {
  description = "returns a string"
  value       = data.fortios_system_dnsserver.this.mode
}

output "this" {
  value = fortios_system_dnsserver.this
}

top