-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initialize org-formation with root user #43
Comments
@NickDarvey did you ever figure out a work around? I'm having the same issue |
hi! you might already have an IAM user provisioned in the target account (or otherwise temporarily create one) you can use by running |
I managed to run the script after the following changes:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AssumeRole",
"Effect": "Allow",
"Action": "sts:AssumeRole",
"Resource": "*"
}
]
}
This seems to be the expected procedure! If so, updating the documentation or creating a bootstrap script for this would be beneficial. I am happy to help out! |
Step 5 of the README says that:
however running the
update
command gives me this result:(I think the warning is irrelevant in this case.)
I believe I could workaround this by creating an IAM account and specifying it as one of the
assumeRolePrincipals
for the next step:Is this what I should be doing? Or have I likely got something else wrong?
The text was updated successfully, but these errors were encountered: