Skip to content

Instantly share code, notes, and snippets.

@QuingKhaos
Last active May 5, 2017 13:24
Show Gist options
  • Save QuingKhaos/99bdfa9f52aebca9cb31dec2b4048896 to your computer and use it in GitHub Desktop.
Save QuingKhaos/99bdfa9f52aebca9cb31dec2b4048896 to your computer and use it in GitHub Desktop.
AWS TerraformInit policy addition for cross account access
{
"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