Skip to content

Instantly share code, notes, and snippets.

@devops-school
Created February 13, 2023 05:48
Show Gist options
  • Save devops-school/6a4bfd9f9f28c65e76e85a9e4ae94d2d to your computer and use it in GitHub Desktop.
Save devops-school/6a4bfd9f9f28c65e76e85a9e4ae94d2d to your computer and use it in GitHub Desktop.
Example of terraform Number variable using aws provider
variable "instance_count" {
type = number
default = 1
}
provider "aws" {
region = "us-west-2"
}
resource "aws_instance" "example" {
count = var.instance_count
ami = "ami-0c55b159cbfafe1f0"
instance_type = "t2.micro"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment