-
Notifications
You must be signed in to change notification settings - Fork 1
/
bastions.tf
133 lines (110 loc) · 3.04 KB
/
bastions.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
* Copyright (C) 2019 Risk Focus, Inc. - All Rights Reserved
* You may use, distribute and modify this code under the
* terms of the Apache License Version 2.0.
* http://www.apache.org/licenses
*/
data "aws_ami" "amazon-linux" {
most_recent = true
filter {
name = "name"
values = ["amzn-ami-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
filter {
name = "root-device-type"
values = ["ebs"]
}
# Amazon
owners = ["137112412989"]
}
data "aws_ami" "ubuntu" {
most_recent = true
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
# Canonical
owners = ["099720109477"]
}
resource "aws_instance" "bastion" {
ami = data.aws_ami.ubuntu.id
instance_type = var.bastion_instance_size
subnet_id = module.vpc.public_subnets[0]
vpc_security_group_ids = [
aws_security_group.bastion_sg.id,
aws_security_group.bastion_incoming_ssh.id,
]
key_name = var.key_name
user_data = templatefile("${path.module}/templates/bastion_ssh_keys.sh.tpl", { bastion_ssh_keys = var.bastion_ssh_keys })
tags = local.bastion_tags
lifecycle {
ignore_changes = [
ami,
]
}
}
resource "aws_security_group" "allow_ssh_from_bastion" {
name = "${var.project_prefix}-eks-bastion_ssh_access"
description = "Allow SSH from bastion"
vpc_id = module.vpc.vpc_id
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
security_groups = [
aws_security_group.bastion_sg.id,
]
}
egress {
from_port = 22
to_port = 22
protocol = "tcp"
security_groups = [
aws_security_group.bastion_sg.id,
]
}
}
resource "aws_security_group" "bastion_incoming_ssh" {
name = "${var.project_prefix}-eks-bastion_incoming_ssh"
description = "Allow SSH to bastion from world"
vpc_id = module.vpc.vpc_id
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = var.ip_whitelist
}
}
resource "aws_security_group" "bastion_sg" {
name = "${var.project_prefix}-eks-bastion_sg"
description = "Bastion SG"
vpc_id = module.vpc.vpc_id
egress {
from_port = 0
to_port = 0
protocol = -1
# TF-UPGRADE-TODO: In Terraform v0.10 and earlier, it was sometimes necessary to
# force an interpolation expression to be interpreted as a list by wrapping it
# in an extra set of list brackets. That form was supported for compatibility in
# v0.11, but is no longer supported in Terraform v0.12.
#
# If the expression in the following list itself returns a list, remove the
# brackets to avoid interpretation as a list of lists. If the expression
# returns a single list item then leave it as-is and remove this TODO comment.
security_groups = [
module.eks.worker_security_group_id,
]
}
}
output "bastion" {
description = "How to reach bastion"
value = "ubuntu@${aws_instance.bastion.public_ip}"
}