Question 81

When multiple engineers start deploying infrastructure using the same state file, what is a feature of remote state storage that is critical to ensure the state doesn't become corrupt?
  • Question 82

    Which option can not be used to keep secrets out of Terraform configuration files?
  • Question 83

    What Terraform feature is shown in the example below?
  • Question 84

    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 85

    A data block requests that Terraform read from a given data source and export the result under the given local name.