Skip to content

Instantly share code, notes, and snippets.

@kluu1
Last active October 6, 2020 18:14
Show Gist options
  • Save kluu1/229cd526c7818eece6964732fe830d0c to your computer and use it in GitHub Desktop.
Save kluu1/229cd526c7818eece6964732fe830d0c to your computer and use it in GitHub Desktop.
bare-bones-terraform
provider "aws" {
profile = "default"
region = "us-east-1"
}
data "aws_ami" "ubuntu" {
most_recent = true
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
owners = ["099720109477"]
}
resource "aws_instance" "jenkins" {
ami = data.aws_ami.ubuntu.id
instance_type = "t2.micro"
tags = {
"Name" = "Jenkins_Server"
"Terraform" = "true"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment