Skip to content

Latest commit

 

History

History
170 lines (136 loc) · 3.05 KB

alicloud_dns_domain.md

File metadata and controls

170 lines (136 loc) · 3.05 KB

alicloud_dns_domain

back

Index

Terraform

terraform {
  required_providers {
    alicloud = ">= 1.120.0"
  }
}

top

Example Usage

module "alicloud_dns_domain" {
  source = "./modules/alicloud/r/alicloud_dns_domain"

  # domain_name - (required) is a type of string
  domain_name = null
  # group_id - (optional) is a type of string
  group_id = null
  # lang - (optional) is a type of string
  lang = null
  # remark - (optional) is a type of string
  remark = null
  # resource_group_id - (optional) is a type of string
  resource_group_id = null
  # tags - (optional) is a type of map of string
  tags = {}

  timeouts = [{
    delete = null
  }]
}

top

Variables

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

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

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

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

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

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

variable "timeouts" {
  description = "nested block: NestingSingle, min items: 0, max items: 0"
  type = set(object(
    {
      delete = string
    }
  ))
  default = []
}

top

Resource

resource "alicloud_dns_domain" "this" {
  # domain_name - (required) is a type of string
  domain_name = var.domain_name
  # group_id - (optional) is a type of string
  group_id = var.group_id
  # lang - (optional) is a type of string
  lang = var.lang
  # remark - (optional) is a type of string
  remark = var.remark
  # resource_group_id - (optional) is a type of string
  resource_group_id = var.resource_group_id
  # tags - (optional) is a type of map of string
  tags = var.tags

  dynamic "timeouts" {
    for_each = var.timeouts
    content {
      # delete - (optional) is a type of string
      delete = timeouts.value["delete"]
    }
  }

}

top

Outputs

output "dns_servers" {
  description = "returns a set of string"
  value       = alicloud_dns_domain.this.dns_servers
}

output "domain_id" {
  description = "returns a string"
  value       = alicloud_dns_domain.this.domain_id
}

output "group_name" {
  description = "returns a string"
  value       = alicloud_dns_domain.this.group_name
}

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

output "puny_code" {
  description = "returns a string"
  value       = alicloud_dns_domain.this.puny_code
}

output "resource_group_id" {
  description = "returns a string"
  value       = alicloud_dns_domain.this.resource_group_id
}

output "this" {
  value = alicloud_dns_domain.this
}

top