Open Shion1305 opened 2 weeks ago
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
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.