Question 126
In the example below, the depends_on argument creates what type of dependency?
Question 127
What does the default "local" Terraform backend store?
Question 128
When using constraint expressions to signify a version of a provider, which of the following are valid provider versions that satisfy the expression found in the following code snippet: (select two)
1. terraform
2. {
3. required_providers
4. {
5. aws = "~> 1.2.0"
6. }
7. }
1. terraform
2. {
3. required_providers
4. {
5. aws = "~> 1.2.0"
6. }
7. }
Question 129
You have to initialize a Terraform backend before it can be configured.
Question 130
Which of the following is the right substitute for static values that can make Terraform configuration file more dynamic and reusable?