Question 61

Open source Terraform can only import publicly-accessible and open-source modules.
  • Question 62

    Why might a user opt to include the following snippet in their configuration file?
  • Question 63

    Terraform can run on Windows or Linux, but it requires a Server version of the Windows operating system.
  • Question 64

    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 65

    What value does the Terraform Cloud/Terraform Enterprise private module registry provide over the public Terraform Module Registry?