Terraform-Associate-004 Exam Question 61

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?
  • Terraform-Associate-004 Exam Question 62

    terraform validate reports syntax check errors for which of the following?
  • Terraform-Associate-004 Exam Question 63

    Which of the following does HCP Terraform perform during a health assessment for a workspace?
  • Terraform-Associate-004 Exam Question 64

    Exhibit:
    module " web_stack " {
    source = " ./modules/web_stack "
    }
    Your configuration defines the module block shown in the exhibit. The web_stack module accepts an input variable named servers. Which of the following changes to the module block sets the servers variable to the value of 3?
  • Terraform-Associate-004 Exam Question 65

    Exhibit:
    resource " aws_instance " " example " {
    ami = " ami-0a123456789abcdef "
    instance_type = " t3.micro "
    }
    You are updating a child module with the resource block shown in the exhibit. The public_ip attribute of the resource needs to be accessible to the parent module. How do you meet this requirement?