-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tf
93 lines (82 loc) · 1.99 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
data "aws_vpc" "main" {
id = var.vpc_id
}
resource "aws_key_pair" "deployer" {
key_name = "deployer-key"
public_key = var.public_key
}
data "template_file" "user_data" {
template = file("${abspath(path.module)}/userdata.yaml")
}
data "aws_ami" "amazon-linux-2" {
most_recent = true
owners = ["amazon"]
filter {
name = "owner-alias"
values = ["amazon"]
}
filter {
name = "name"
values = ["amzn2-ami-hvm*"]
}
}
resource "aws_instance" "mydemo_server" {
ami = "${data.aws_ami.amazon-linux-2.id}"
instance_type = var.instance_type
key_name = "${aws_key_pair.deployer.key_name}"
vpc_security_group_ids = [aws_security_group.sg_demo_server.id]
user_data = data.template_file.user_data.rendered
tags = {
Name = var.server_name
}
}
resource "aws_security_group" "sg_demo_server" {
name = "sg_demo_server"
description = "MyDemoServer SG"
vpc_id = data.aws_vpc.main.id
ingress = [
{
description = "SSH"
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = [var.my_ip]
ipv6_cidr_blocks = []
prefix_list_ids = []
security_groups = []
self = false
},
{
description = "HTTP"
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = []
prefix_list_ids = []
security_groups = []
self = false
}
]
egress =[
{
description = "outgoing traffic"
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
prefix_list_ids = []
security_groups = []
self = false
}
]
}
resource "null_resource" "status" {
provisioner "local-exec" {
command = "aws ec2 wait instance-status-ok --instance-ids ${aws_instance.mydemo_server.id}"
}
depends_on = [
aws_instance.mydemo_server
]
}