Last active
July 30, 2019 15:12
-
-
Save CodySwannGT/f92ef2832442fa433c0c2e39839ba67a to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "VisualEditor0", | |
"Effect": "Allow", | |
"Action": [ | |
"iam:CreatePolicy", | |
"iam:CreateGroup", | |
"iam:AddUserToGroup", | |
"iam:AttachGroupPolicy", | |
"organizations:ListOrganizationalUnitsForParent", | |
"organizations:CreateOrganizationalUnit", | |
"organizations:MoveAccount" | |
], | |
"Resource": [ | |
"arn:aws:organizations::*:account/o-*/*", | |
"arn:aws:organizations::*:root/o-*/r-*", | |
"arn:aws:organizations::*:ou/o-*/ou-*", | |
"arn:aws:iam::*:policy/*", | |
"arn:aws:iam::*:group/*" | |
] | |
}, | |
{ | |
"Sid": "VisualEditor1", | |
"Effect": "Allow", | |
"Action": "sts:AssumeRole", | |
"Resource": "arn:aws:iam:::role/*OrganizationAccountAccessRole" | |
}, | |
{ | |
"Sid": "VisualEditor2", | |
"Effect": "Allow", | |
"Action": [ | |
"organizations:ListRoots", | |
"organizations:ListAccounts", | |
"organizations:DescribeOrganization", | |
"iam:CreateAccountAlias", | |
"organizations:CreateAccount", | |
"organizations:DescribeCreateAccountStatus" | |
], | |
"Resource": "*" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment