Question from the Terraform : certification training test

What does this Terraform code do?

Waiting for validation

Consider the following block of code:

resource "aws_instance" "web" {
  count = var.high_availability ? 3 : 1
  
  tags = {
    Name = count.index == 0 ? "web-primary" : "web-secondary-${count.index}"
  }
}

Which statement(s) about this code are true? (choose 2 answers)

Author: Julien WITTOUCKStatus: Waiting for validationQuestion not yet passed
0
Community EvaluationsNo one has reviewed this question yet, be the first!