Geoffrey Hichborn

Results 39 comments of Geoffrey Hichborn

This is caused by https://github.com/ansible-collections/community.aws/pull/1176, which creates and uses an S3 boto3 client without the credentials provided to the plugin.

cc @jillr @markuman @s-hertel @tremble

That's because you do have duplicates. ```diff - "SubnetIds": [ {"Ref": "SubnetId001", "Ref": "SubnetId002", "Ref": "SubnetId003"} ] + "SubnetIds": [ { "Ref": "SubnetId001" }, { "Ref": "SubnetId002" }, { "Ref":...

This appears to have fixed the issue. 👍

> Easiest way to deal with the issue in your own terraform code is to add following parameter to vpc module: I specifically don't want to enable `create_database_subnet_route_table` (temporarily, as...

I came across something similar. IMHO, this upgrade:routes task is more likely to do serious harm then actually help with my upgrade. My issue was the path_prefix and name_prefix being...