Question 111
Your team has started using terraform OSS in a big way , and now wants to deploy multi region deployments (DR) in aws using the same terraform files . You want to deploy the same infra (VPC,EC2 ...) in both us-east-1 ,and us-west-2 using the same script , and then peer the VPCs across both the regions to enable DR traffic. But , when you run your script , all resources are getting created in only the default provider region. What should you do? Your provider setting is as below -
# The default provider configuration provider "aws" { region = "us-east-1" }
Question 112
When Terraform needs to be installed in a location where it does not have internet access to download the installer and upgrades, the installation is generally known as to be __________.
Question 113
A Terraform local value can reference other Terraform local values.
Question 114
Terraform providers are always installed from the Internet.
Question 115
By default, provisioners that fail will also cause the Terraform apply itself to error. How can you change this default behavior within a provisioner?
