Bird
0
0

Which of the following is the correct way to enable cross-zone load balancing in an AWS Application Load Balancer using Terraform?

easy📝 Configuration Q12 of 15
AWS - Elastic Load Balancing
Which of the following is the correct way to enable cross-zone load balancing in an AWS Application Load Balancer using Terraform?
Aenable_cross_zone_load_balancing = false
Bcross_zone_load_balancing = true
Ccross_zone_enabled = true
Denable_cross_zone_load_balancing = true
Step-by-Step Solution
Solution:
  1. Step 1: Recall Terraform attribute for cross-zone load balancing

    The correct attribute is enable_cross_zone_load_balancing and it must be set to true to enable.
  2. Step 2: Match options to correct syntax

    Only enable_cross_zone_load_balancing = true uses the exact attribute name and sets it to true.
  3. Final Answer:

    enable_cross_zone_load_balancing = true -> Option D
  4. Quick Check:

    Terraform attribute = enable_cross_zone_load_balancing true [OK]
Quick Trick: Look for exact attribute name with true value [OK]
Common Mistakes:
  • Using incorrect attribute names like cross_zone_load_balancing
  • Setting the value to false instead of true
  • Confusing with other unrelated settings

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes