Provides a VPC DHCP Options Association resource.
resource "aws_vpc_dhcp_options_association" "dns_resolver" {
vpc_id = "${aws_vpc.foo.id}"
dhcp_options_id = "${aws_vpc_dhcp_options.foo.id}"
}
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. default DHCP Options Set to the VPC. 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