Skip to content

Latest commit

 

History

History
77 lines (56 loc) · 1.02 KB

dns_aaaa_record_set.md

File metadata and controls

77 lines (56 loc) · 1.02 KB

dns_aaaa_record_set

back

Index

Terraform

terraform {
  required_providers {
    dns = ">= 3.1.0"
  }
}

top

Example Usage

module "dns_aaaa_record_set" {
  source = "./modules/dns/d/dns_aaaa_record_set"

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

top

Variables

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

top

Datasource

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

top

Outputs

output "addrs" {
  description = "returns a list of string"
  value       = data.dns_aaaa_record_set.this.addrs
}

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

output "this" {
  value = dns_aaaa_record_set.this
}

top