We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
sso_profile
aws configure sso generates .aws/config as following, but terraformer is not compatible with this format.
aws configure sso
.aws/config
[profile prd] sso_session = prd sso_account_id = xxxxxxxxx sso_role_name = xxxxxxxxx region = ap-northeast-1 output = json [sso-session prd] sso_start_url = https://d-xxxxxxxxx.awsapps.com/start/# sso_region = us-east-1 sso_registration_scopes = sso:account:access
If you rewrite this config file like following, it does work.
[profile prd] sso_account_id = xxxxxxxxxx sso_role_name = xxxxxxxxxxx region = ap-northeast-1 output = json sso_start_url = https://d-xxxxxxxxxx.awsapps.com/start/# sso_region = us-east-1
The text was updated successfully, but these errors were encountered:
Just adding that I had the exact same problem when using a SSO login and I agree that it seems sensitive to the order and options in the .aws/config
Thanks for the hint anyway @Shion1305 :)
Sorry, something went wrong.
Still doesn't work. Removing sso_session = makes plugin.terraform-provider-aws_v5.80.0_x5 thow an error about inability to read the session file.
sso_session =
No branches or pull requests
aws configure sso
generates.aws/config
as following, but terraformer is not compatible with this format.If you rewrite this config file like following, it does work.
The text was updated successfully, but these errors were encountered: