Creating VPC using ec2_vpc module. Have a public net so adding a routing table:
"route_tables": [
{
"routes": [ { "dest": "
0.0.0.0/0", "gw": "igw" } ],
"resource_tags": { "Name": "way_out" }
}
],
The route is created but it does not have any tags (it has empty Name tag which is always created by Amazon). There are no error messages. Similar resource_tags work fine for the vpc and subnets. Also tried to add another tag (in additon to Name) but that one didn't show up in the created route table either.
Any ideas what's going on?
Thanks!
erik