Last active
October 6, 2020 18:14
-
-
Save kluu1/229cd526c7818eece6964732fe830d0c to your computer and use it in GitHub Desktop.
bare-bones-terraform
This file contains hidden or 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" { | |
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