AWS: new module ec2_transit_gateway fixes #49376 (#53651)

* AWS: new module ec2_transit_gateway fixes #49376

* Add permissions neeeded for integration tests

* uncomment nolog on creds

* add unsupported to integration test aliases

* remove the shippable/aws/group alias so doesn't conflict with unsupported
This commit is contained in:
Bob Boldin 2019-03-13 19:42:33 -04:00 committed by Will Thames
commit b67505d271
4 changed files with 699 additions and 0 deletions

View file

@ -12,6 +12,16 @@
"route53:UpdateHostedZoneComment"
],
"Resource": "*"
},
{
"Sid": "AllowTransitGatewayManagement",
"Effect": "Allow",
"Action": [
"ec2:CreateTransitGateway",
"ec2:DeleteTransitGateway",
"ec2:DescribeTransitGateways"
],
"Resource": "*"
}
]
}