Skip to content

Instantly share code, notes, and snippets.

@waltervargas
Created September 25, 2020 12:24
Show Gist options
  • Save waltervargas/870964b9e1120f177342e06cb7afb20d to your computer and use it in GitHub Desktop.
Save waltervargas/870964b9e1120f177342e06cb7afb20d to your computer and use it in GitHub Desktop.
AWS Account List from Organization to terraform list format
aws organizations list-accounts | jq -r '.[] | .[] | [.Id, .Name] | @csv' | perl -pe 's|,|, //|'
@waltervargas
Copy link
Author

Produces something like this:

"123456767890",   //"walter-test"
"234234234234",   //"walter-dev"
"234234234255",   //"walter-qa"
"456456456456",   //"walter-prod"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment