Difference between revisions of "Terraform meta argument: count"

From wikieduonline
Jump to navigation Jump to search
Line 8: Line 8:
  
 
Terraform does not allow to use count inside module block.<ref>https://registry.terraform.io/modules/terraform-aws-modules/s3-bucket/aws/latest</ref>
 
Terraform does not allow to use count inside module block.<ref>https://registry.terraform.io/modules/terraform-aws-modules/s3-bucket/aws/latest</ref>
 +
 +
 +
resource "aws_instance" "dev" {
 +
    ami = "ami-082b5a644766e0e6f"
 +
    instance_type = "t2.micro"
 +
    count = var.istest == true ? 3 : 0
 +
}
  
 
== See also ==
 
== See also ==

Revision as of 10:52, 16 February 2022

count = var.istest == true ? 3 : 0


Terraform does not allow to use count inside module block.[1]


resource "aws_instance" "dev" {
   ami = "ami-082b5a644766e0e6f"
   instance_type = "t2.micro"
   count = var.istest == true ? 3 : 0
}

See also

  • https://registry.terraform.io/modules/terraform-aws-modules/s3-bucket/aws/latest
  • Advertising: