Which two steps are required to provision new infrastructure in the Terraform workflow? (Pick the 2 correct responses below.)
Exhibit.
You need to deploy resources into two different regions in the same Terraform configuration. To do this, you declare multiple provider configurations as shown in the Exhibit space on this page.
What meta-argument do you need to configure in a resource block to deploy the resource to the us-west-2 AWS region?
You have a simple Terraform configuration containing one VM (virtual machine) in a cloud provider. You run terraform apply and the VM is created successfully. What will happen if you run terraform apply again immediately afterwards without changing any Terraform code?
How do you specify a module’s version when publishing it to the public terraform Module Registry?
Using the terraform state rm command against a resource will destroy it.
What is the purpose of the .terraform directory in a Terraform workspace?
Terraform variables and outputs that set the description argument will store that description in the state file.
Your team adopts AWS CloudFormation as the standardized method for provisioning public cloud resources.
Which scenario presents a challenge for your team?
HashiCorp Configuration Language (HCL) supports user-denned functions.
Exhibit:
provider " aws " { region = " us-east-1 " }
provider " aws " { region = " us-west-2 " }
You need to deploy resources into two different AWS regions in the same Terraform configuration using the provider blocks shown in the exhibit. What do you need to add to the provider configuration to deploy a resource to the us-west-2 AWS region?