Skip to content

Latest commit

 

History

History
147 lines (112 loc) · 2.73 KB

File metadata and controls

147 lines (112 loc) · 2.73 KB

fortios_system_dnsdatabase

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Datasource

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

top

Outputs

output "allow_transfer" {
  description = "returns a string"
  value       = data.fortios_system_dnsdatabase.this.allow_transfer
}

output "authoritative" {
  description = "returns a string"
  value       = data.fortios_system_dnsdatabase.this.authoritative
}

output "contact" {
  description = "returns a string"
  value       = data.fortios_system_dnsdatabase.this.contact
}

output "dns_entry" {
  description = "returns a list of object"
  value       = data.fortios_system_dnsdatabase.this.dns_entry
}

output "domain" {
  description = "returns a string"
  value       = data.fortios_system_dnsdatabase.this.domain
}

output "forwarder" {
  description = "returns a string"
  value       = data.fortios_system_dnsdatabase.this.forwarder
}

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

output "ip_master" {
  description = "returns a string"
  value       = data.fortios_system_dnsdatabase.this.ip_master
}

output "ip_primary" {
  description = "returns a string"
  value       = data.fortios_system_dnsdatabase.this.ip_primary
}

output "primary_name" {
  description = "returns a string"
  value       = data.fortios_system_dnsdatabase.this.primary_name
}

output "rr_max" {
  description = "returns a number"
  value       = data.fortios_system_dnsdatabase.this.rr_max
}

output "source_ip" {
  description = "returns a string"
  value       = data.fortios_system_dnsdatabase.this.source_ip
}

output "status" {
  description = "returns a string"
  value       = data.fortios_system_dnsdatabase.this.status
}

output "ttl" {
  description = "returns a number"
  value       = data.fortios_system_dnsdatabase.this.ttl
}

output "type" {
  description = "returns a string"
  value       = data.fortios_system_dnsdatabase.this.type
}

output "view" {
  description = "returns a string"
  value       = data.fortios_system_dnsdatabase.this.view
}

output "this" {
  value = fortios_system_dnsdatabase.this
}

top