mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-16 18:35:03 -06:00
ignore routes originating from vgws
This commit is contained in:
parent
9bdb2fb2d1
commit
66159fd008
@ -116,6 +116,10 @@ func resourceAwsRouteTableRead(d *schema.ResourceData, meta interface{}) error {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if r.Origin == "EnableVgwRoutePropagation" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
m := make(map[string]interface{})
|
m := make(map[string]interface{})
|
||||||
m["cidr_block"] = r.DestinationCidrBlock
|
m["cidr_block"] = r.DestinationCidrBlock
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user