Skip to content

Instantly share code, notes, and snippets.

@devops-school
Created February 13, 2023 05:50
Show Gist options
  • Save devops-school/fd155eaf6761dee93e30b2de9bae7331 to your computer and use it in GitHub Desktop.
Save devops-school/fd155eaf6761dee93e30b2de9bae7331 to your computer and use it in GitHub Desktop.
variable "instance_name" {
type = string
default = "my-instance"
}
provider "aws" {
region = "us-west-2"
}
resource "aws_instance" "example" {
ami = "ami-0c55b159cbfafe1f0"
instance_type = "t2.micro"
tags = {
Name = var.instance_name
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment