Difference between revisions of "Terraform function: tolist"
Jump to navigation
Jump to search
(5 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
− | *<code>tolist</code> | + | * <code>tolist</code> |
+ | |||
+ | resource "aws_identitystore_user" "example" { | ||
+ | [[identity_store_id]] = [[tolist]]([[data.]]aws_ssoadmin_instances.example.identity_store_ids)[0] | ||
+ | |||
+ | display_name = "John Doe" | ||
+ | user_name = "johndoe" | ||
+ | |||
+ | name { | ||
+ | given_name = "John" | ||
+ | family_name = "Doe" | ||
+ | } | ||
+ | |||
+ | emails { | ||
+ | value = "[email protected]" | ||
+ | } | ||
+ | } | ||
== Related terms == | == Related terms == | ||
− | * [[ | + | * [[Splat expression]] |
− | * [[Error: Error in function call]]: "list" function was deprecated in [[Terraform v0.12]] | + | * [[Error: Error in function call]]: "<code>list</code>" function was deprecated in [[Terraform v0.12]] |
* <code>[[toset]]</code> | * <code>[[toset]]</code> | ||
* [[Terraform variable types]] | * [[Terraform variable types]] | ||
Line 12: | Line 28: | ||
== See also == | == See also == | ||
* {{Terraform functions}} | * {{Terraform functions}} | ||
− | + | ||
[[Category:Terraform]] | [[Category:Terraform]] |
Latest revision as of 16:35, 27 February 2023
tolist
resource "aws_identitystore_user" "example" { identity_store_id = tolist(data.aws_ssoadmin_instances.example.identity_store_ids)[0] display_name = "John Doe" user_name = "johndoe" name { given_name = "John" family_name = "Doe" } emails { value = "[email protected]" } }
Related terms[edit]
- Splat expression
- Error: Error in function call: "
list
" function was deprecated in Terraform v0.12 toset
- Terraform variable types
See also[edit]
Advertising: