Skip to content

Instantly share code, notes, and snippets.

@lantrix
Created December 24, 2020 11:11
Show Gist options
  • Save lantrix/0cc6aa1de799de55f114ae32039d902b to your computer and use it in GitHub Desktop.
Save lantrix/0cc6aa1de799de55f114ae32039d902b to your computer and use it in GitHub Desktop.
Terraform instance
provider "aws" {
region = "ap-southeast-2"
}
data "aws_ssm_parameter" "ami" {
name = "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs"
}
resource "aws_instance" "test-terraform" {
instance_type = "t2.nano"
ami = data.aws_ssm_parameter.ami.value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment