FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_route_table_association

Provides a resource to create an association between a subnet and routing table.

Example Usage

resource "aws_route_table_association" "a" {
    subnet_id = "${aws_subnet.foo.id}"
    route_table_id = "${aws_route_table.bar.id}"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io