forked from nelg/terraform-aws-nat-instance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstance.tf
93 lines (85 loc) · 2.03 KB
/
instance.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
# an example instance in the private subnet
resource "aws_instance" "private_instance" {
ami = data.aws_ami.amazon_linux_2.id
instance_type = "t3.micro"
iam_instance_profile = aws_iam_instance_profile.private_instance.name
subnet_id = module.vpc.private_subnets[0]
vpc_security_group_ids = [aws_security_group.private_instance.id]
tags = {
Name = "example-terraform-aws-nat-instance"
}
user_data = <<EOF
#!/bin/bash
yum install -y httpd
systemctl start httpd
EOF
}
resource "aws_security_group" "private_instance" {
name = "example-terraform-aws-nat-instance"
description = "expose http service"
vpc_id = module.vpc.vpc_id
ingress {
protocol = "tcp"
from_port = 80
to_port = 80
security_groups = [module.nat.sg_id]
}
egress {
protocol = "-1"
from_port = 0
to_port = 0
cidr_blocks = ["0.0.0.0/0"]
}
}
# AMI of the latest Amazon Linux 2
data "aws_ami" "amazon_linux_2" {
most_recent = true
owners = ["amazon"]
filter {
name = "architecture"
values = ["x86_64"]
}
filter {
name = "root-device-type"
values = ["ebs"]
}
filter {
name = "name"
values = ["amzn2-ami-hvm-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
filter {
name = "block-device-mapping.volume-type"
values = ["gp2"]
}
}
# enable SSM access
resource "aws_iam_instance_profile" "private_instance" {
role = aws_iam_role.private_instance.name
}
resource "aws_iam_role" "private_instance" {
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "ec2.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
EOF
}
resource "aws_iam_role_policy_attachment" "ssm" {
policy_arn = "arn:aws:iam::aws:policy/AmazonSSMManagedInstanceCore"
role = aws_iam_role.private_instance.name
}
output "private_instance_id" {
value = aws_instance.private_instance.id
}