Demonstrate how to define a simple Terraform loop
Answer
resource "aws_instance" "server" {
count = 15
}
The above configuration will create 15 aws instances.
resource "aws_instance" "server" {
count = 15
}
The above configuration will create 15 aws instances.