-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
40 lines (34 loc) · 778 Bytes
/
main.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
############ PROVIDER BLOCK ############
provider "aws" {
region = "us-east-1"
profile = "default"
}
############ SAVING TF STATE FILE #########
terraform {
backend "s3" {
bucket = "atlantis-deploy-thsre"
key = "atlantis/terraform.tfstate"
region = "us-east-1"
profile = "default"
}
}
################# EC2 INSTANCE CREATION #########
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" "web" {
ami = data.aws_ami.ubuntu.id
instance_type = "t2.micro"
tags = {
Name = "terraform-atlantis"
}
}