Question 6

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 7

    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 8

    Your organization has moved to AWS and has manually deployed infrastructure using the console. Recently, a decision has been made to standardize on Terraform for all deployments moving forward.
    What can you do to ensure that all existing is managed by Terraform moving forward without interruption to existing services?
  • Question 9

    Terraform variables and outputs that set the "description" argument will store that description in the state file.
  • Question 10

    Terraform variables and outputs that set the "description" argument will store that description in the state file.