fixed route table associations (#4325)
This commit is contained in:
parent
65dd0f1660
commit
3e20703106
@ -258,7 +258,12 @@ DESCRIBE_ROUTE_TABLES_RESPONSE = """
|
|||||||
<routeTableAssociationId>{{ association_id }}</routeTableAssociationId>
|
<routeTableAssociationId>{{ association_id }}</routeTableAssociationId>
|
||||||
<routeTableId>{{ route_table.id }}</routeTableId>
|
<routeTableId>{{ route_table.id }}</routeTableId>
|
||||||
<main>true</main>
|
<main>true</main>
|
||||||
|
{% if subnet_id.startswith("igw") %}
|
||||||
|
<gatewayId>{{ subnet_id }}</gatewayId>
|
||||||
|
{% endif %}
|
||||||
|
{% if subnet_id.startswith("subnet") %}
|
||||||
<subnetId>{{ subnet_id }}</subnetId>
|
<subnetId>{{ subnet_id }}</subnetId>
|
||||||
|
{% endif %}
|
||||||
<associationState>
|
<associationState>
|
||||||
<state>associated</state>
|
<state>associated</state>
|
||||||
</associationState>
|
</associationState>
|
||||||
|
@ -109,3 +109,4 @@ TestAccAWSEc2CarrierGateway
|
|||||||
TestAccDataSourceAwsNetworkInterface_
|
TestAccDataSourceAwsNetworkInterface_
|
||||||
TestAccAWSNatGateway
|
TestAccAWSNatGateway
|
||||||
TestAccAWSRouteTable_
|
TestAccAWSRouteTable_
|
||||||
|
TestAccAWSRouteTableAssociation_
|
Loading…
Reference in New Issue
Block a user