文档

alicloud_alidns_domain_attachment

更新时间:
一键部署

Provides bind the domain name to the Alidns instance resource.

-> NOTE: Available since v1.99.0.

Example Usage

resource "alicloud_alidns_domain_group" "default" {
  domain_group_name = "tf-example"
}
resource "alicloud_alidns_domain" "default" {
  domain_name = "starmove.com"
  group_id    = alicloud_alidns_domain_group.default.id
  tags = {
    Created = "TF",
    For     = "example",
  }
}

resource "alicloud_alidns_instance" "default" {
  dns_security   = "basic"
  domain_numbers = 3
  version_code   = "version_personal"
  period         = 1
  renewal_status = "ManualRenewal"
}

resource "alicloud_alidns_domain_attachment" "default" {
  instance_id  = alicloud_alidns_instance.default.id
  domain_names = [alicloud_alidns_domain.default.domain_name]
}

Argument Reference

The following arguments are supported:

  • instance_id - (Required, ForceNew) The id of the DNS instance.
  • domain_names - (Required) The domain names bound to the DNS instance.

Attributes Reference

The following attributes are exported:

  • id - This ID of this resource. The value is same as instance_id.

Import

DNS domain attachment can be imported using the id, e.g.

$ terraform import alicloud_alidns_domain_attachment.example dns-cn-v0h1ldjhxxx

  • 本页导读 (0)
文档反馈