Skip to content

Instantly share code, notes, and snippets.

@anvodev
Last active January 12, 2020 08:41
Show Gist options
  • Save anvodev/242aa679ef6a2a1f5d7c3811dbaddd37 to your computer and use it in GitHub Desktop.
Save anvodev/242aa679ef6a2a1f5d7c3811dbaddd37 to your computer and use it in GitHub Desktop.
provider "aws" {
region = "ap-southeast-1"
}
resource "aws_instance" "poc" {
ami = "ami-0123b531fc646552f"
instance_type = "t2.micro"
tags = {
Name = "poc"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment