Last active
May 5, 2017 13:24
-
-
Save QuingKhaos/99bdfa9f52aebca9cb31dec2b4048896 to your computer and use it in GitHub Desktop.
AWS TerraformInit policy addition for cross account access
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Effect": "Allow", | |
"Action": [ | |
"iam:CreatePolicy", | |
"iam:GetPolicy", | |
"iam:GetPolicyVersion", | |
"iam:CreatePolicyVersion", | |
"iam:ListPolicyVersions" | |
], | |
"Resource": [ | |
"arn:aws:iam::ACCOUNTID:policy/AdministratorCrossAccountAccess", | |
"arn:aws:iam::ACCOUNTID:policy/DeveloperCrossAccountAccess", | |
"arn:aws:iam::ACCOUNTID:policy/BillingCrossAccountAccess" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment