W3cubDocs

/Terraform

aws_vpc_dhcp_options_association

Provides a VPC DHCP Options Association resource.

Example Usage

resource "aws_vpc_dhcp_options_association" "dns_resolver" {
  vpc_id          = "${aws_vpc.foo.id}"
  dhcp_options_id = "${aws_vpc_dhcp_options.foo.id}"
}

Argument Reference

The following arguments are supported:

  • vpc_id - (Required) The ID of the VPC to which we would like to associate a DHCP Options Set.
  • dhcp_options_id - (Required) The ID of the DHCP Options Set to associate to the VPC.

Remarks

  • You can only associate one DHCP Options Set to a given VPC ID.
  • Removing the DHCP Options Association automatically sets AWS's default DHCP Options Set to the VPC.

Attributes Reference

In addition to all arguments above, the following attributes are exported:

  • id - The ID of the DHCP Options Set Association.

© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/vpc_dhcp_options_association.html