
* Updating naming scheme in gateway.tf & route-table.tf Should be more clear what each block is meant for
18 lines
419 B
HCL
18 lines
419 B
HCL
resource "aws_route_table" "crete_route_table" {
|
|
vpc_id = aws_vpc.athens_vpc.id
|
|
route {
|
|
# ????
|
|
cidr_block = "0.0.0.0/0"
|
|
gateway_id = aws_internet_gateway.athens_internet_gateway.id
|
|
}
|
|
tags = {
|
|
Name = "Crete Route Table"
|
|
}
|
|
}
|
|
|
|
resource "aws_route_table_association" "crete_gateway_association" {
|
|
subnet_id = aws_subnet.crete_subnet.id
|
|
route_table_id = aws_route_table.crete_route_table.id
|
|
}
|
|
|