16 lines
401 B
Markdown
16 lines
401 B
Markdown
# acocunt-list module
|
|
This module returns a list of accounts by querying the aws_organizations_organiation datasource. It returns an accounts map like this
|
|
|
|
```
|
|
{
|
|
account-name-1 = "111111111111"
|
|
account-name-2 = "111111111111"
|
|
}
|
|
```
|
|
|
|
In the root module, query the account id like this
|
|
```terraform
|
|
output result {
|
|
value = lookup(module.account-list.accounts, "account-name-1")
|
|
}
|
|
``` |