Question 51
Which of the following variable declarations is going to result in an error?
Question 52
The following is a snippet from a Terraform configuration file:
1. provider "aws" {
2. region = "us-east-1"
3. }
4. provider "aws" {
5. region = "us-west-1"
6. }
which, when validated, results in the following error:-
1. Error: Duplicate provider configuration
2.
3. on main.tf line 5:
4. 5: provider "aws" {
5.
6. A default provider configuration for "aws" was already given at
7. main.tf:1,1-15. If multiple configurations are required, set the "______"
8. argument for alternative configurations.
Fill in the blank in the error message with the correct string from the list below.
Question 53
Which of the following actions are performed during a terraform init? (select three)
Question 54
Complete the following sentence:
For the local state, the workspaces are stored directly in a...
Question 55
What Terraform command can be used to inspect the current state file?
