TA-002-P · Question #261
Select the feature below that best completes the sentence: The following list represents the different types of __________ available in Terraform. 1. max 2. min 3. join 4. replace 5. list 6. length…
The correct answer is D. Functions. All seven items - max, min, join, replace, list, length, and range - are Terraform built-in functions. Terraform includes a rich standard library of functions for transforming and combining values: numeric functions (max, min), string functions (join, replace), collection…
Question
Options
- ABackends
- BData sources
- CNamed values
- DFunctions
How the community answered
(34 responses)- A6% (2)
- B3% (1)
- C3% (1)
- D88% (30)
Explanation
All seven items - max, min, join, replace, list, length, and range - are Terraform built-in functions. Terraform includes a rich standard library of functions for transforming and combining values: numeric functions (max, min), string functions (join, replace), collection functions (list, length, range), and more. These are called using the syntax function_name(arguments) within expressions. They are not backends (storage mechanisms), data sources (external data reads), or named values (variables/locals/outputs).
Topics
Community Discussion
No community discussion yet for this question.