Valid VA-002-P Dumps shared by ExamDiscuss.com for Helping Passing VA-002-P Exam! ExamDiscuss.com now offer the newest VA-002-P exam dumps, the ExamDiscuss.com VA-002-P exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com VA-002-P dumps with Test Engine here:
Which statements best describes what the local variable assignment is doing in the following code snippet: 1. variable "subnet_details" { 2. type = list(object({ 3. cidr = string 4. subnet_name = string 5. route_table_name = string 6. aznum = number 7. })) 8. } 9. locals { 10. route_tables_all = distinct([for s in var.subnet_details : s.route_table_name ]) 11. }
Correct Answer: D
route_tables_all is assigned a list of unique route table names filtered from a list of objects describing subnet details, one of those object attributes being route_table_name.