Question 156

What is one disadvantage of using dynamic blocks in Terraform?
  • Question 157

    You have created 2 workspaces PROD and RQA.
    You have switched to RQA and provisioned RQA infrastructure from this workspace. Where is your state file stored?
  • Question 158

    In the example below, where is the value of the DNS record's IP address originating from?
    1. resource "aws_route53_record" "www"
    2. {
    3. zone_id = aws_route53_zone.primary.zone_id
    4. name = "www.example.com"
    5. type = "A"
    6. ttl = "300"
    7. records = [module.web_server.instance_ip_address]
    8. }
  • Question 159

    When you use a remote backend that needs authentication. HashrCorp recommends that you:
  • Question 160

    True or False: Workspaces provide identical functionality in the open-source, Terraform Cloud, and Enterprise versions of Terraform.