Question 101

Which of the following is available only in Terraform Enterprise or Cloud workspaces and not in Terraform
CLI?
  • Question 102

    terraform init retrieves the source code tot all referenced modules
  • Question 103

    In contrast to Terraform Open Source, when working with Terraform Enterprise and Cloud Workspaces,
    conceptually you could think about them as completely separate working directories.
  • Question 104

    When running the command terraform taint against a managed resource you want to force recreation upon,
    Terraform will immediately destroy and recreate the resource.
  • Question 105

    John wants to use two different regions to deploy two different EC2 instances. He has specified two provider
    blocks in his providers.tf file.
    provider "aws" { region = "us-east-1" }
    provider "aws" { region = "us-west-2" }
    When he run terraform plan he encountered an error. How to fix this?