Valid TA-002-P Dumps shared by ExamDiscuss.com for Helping Passing TA-002-P Exam! ExamDiscuss.com now offer the newest TA-002-P exam dumps, the ExamDiscuss.com TA-002-P exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com TA-002-P dumps with Test Engine here:
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. }
Correct Answer: B
Explanation In a parent module, outputs of child modules are available in expressions as module.<MODULE NAME>.<OUTPUT NAME>. For example, if a child module named web_server declared an output named instance_ip_address, you could access that value as module.web_server.instance_ip_address.