TA-002-P Exam Question 126

Terraform provisioners that require authentication can use the ______ block.
  • TA-002-P Exam Question 127

    What does terrafom plan do ?
  • TA-002-P Exam Question 128

    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" }
  • TA-002-P Exam Question 129

    Terraform configuration (including any module references) can contain only one Terraform provider type.
  • TA-002-P Exam Question 130

    Your team uses terraform OSS . You have created a number of resuable modules for important , independent network components that you want to share with your team to enhance consistency . What is the correct option/way to do that?