Skip to content

Instantly share code, notes, and snippets.

@overnew
Created April 17, 2024 01:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save overnew/91761ced289b266abe324a22b93ca6e3 to your computer and use it in GitHub Desktop.
Save overnew/91761ced289b266abe324a22b93ca6e3 to your computer and use it in GitHub Desktop.
terraform ec2 example
provider "aws" {
region = "ap-northeast-2"
}
resource "aws_instance" "example" {
ami = "ami-050a4617492ff5822"
instance_type = "t2.micro"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment