Which of the following is not a valid Terraform collection type?
Which of the following is not a valid Terraform collection type?
In Terraform, the valid collection types are list, map, and set. These types are used to group multiple values together. A list is an ordered sequence of values identified by consecutive whole numbers starting from zero. A map is a collection of values where each is identified by a string label. A set is a collection of unique values that do not have secondary identifiers or ordering. A 'tree' is not a valid collection type in Terraform.
C is correct answer. Tree https://www.terraform.io/language/expressions/type-constraints#collection-types
C is the right answer
C is the right answer
tree isn't even on that page..
answer is C, tree
the tree is not a valid collection type in terrafrom
my bad, is NOT a valid... answer C is correct
Answer is C - tree
we dont a have tree type in terraform
C. tree Here's why: Valid Terraform Collection Types: list: An ordered collection of values. map: An unordered collection of key-value pairs. set: An unordered collection of unique values. tree: Terraform does not have a built-in collection type called "tree." Trees are a data structure typically used in other programming languages for hierarchical data representation.