Iam creating a role and trying to attach an was managed policy for transit gateway full access. But I am not able to find any policy with transit gateway.
Asked
Active
Viewed 860 times
1 Answers
0
There is no such AWS managed policy. So you can create your own customer managed policy. For example:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "FullTransitGatewayPermissions",
"Effect": "Allow",
"Action": [
"ec2:*TransitGateway*"
],
"Resource": "*"
}
]
}
Depending on exactly what you need, you can add more permissions or be more selective.

Marcin
- 215,873
- 14
- 235
- 294
-
@SUBHASPATIL How did it go? Any progress with the issue? – Marcin Apr 10 '21 at 01:25