b67505d271
* 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
27 lines
747 B
JSON
27 lines
747 B
JSON
{
|
|
"Version": "2012-10-17",
|
|
"Statement": [
|
|
{
|
|
"Sid": "ManageRoute53ForTests",
|
|
"Effect": "Allow",
|
|
"Action": [
|
|
"route53:CreateHostedZone",
|
|
"route53:DeleteHostedZone",
|
|
"route53:GetHostedZone",
|
|
"route53:ListHostedZones",
|
|
"route53:UpdateHostedZoneComment"
|
|
],
|
|
"Resource": "*"
|
|
},
|
|
{
|
|
"Sid": "AllowTransitGatewayManagement",
|
|
"Effect": "Allow",
|
|
"Action": [
|
|
"ec2:CreateTransitGateway",
|
|
"ec2:DeleteTransitGateway",
|
|
"ec2:DescribeTransitGateways"
|
|
],
|
|
"Resource": "*"
|
|
}
|
|
]
|
|
}
|