Last active
January 12, 2020 08:40
-
-
Save anvodev/9d0583d7e9b74fb0f64a715da8ac89e1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
provider "aws" { | |
region = "ap-southeast-1" | |
} | |
resource "aws_instance" "poc" { | |
ami = "ami-0123b531fc646552f" | |
instance_type = "t2.micro" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment