-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathcloud.tf
More file actions
237 lines (201 loc) · 6.56 KB
/
cloud.tf
File metadata and controls
237 lines (201 loc) · 6.56 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# cloud vpc resources
resource "ibm_is_vpc" "cloud" {
name = local.BASENAME_CLOUD
tags = local.tags
resource_group = data.ibm_resource_group.all_rg.id
address_prefix_management = "manual"
}
resource "ibm_is_vpc_address_prefix" "cloud" {
name = "${local.BASENAME_CLOUD}-${local.zone}"
zone = local.zone
vpc = ibm_is_vpc.cloud.id
cidr = local.cidr_cloud_1
}
resource "ibm_is_public_gateway" "cloud" {
count = var.cloud_pgw ? 1 : 0
resource_group = data.ibm_resource_group.all_rg.id
vpc = ibm_is_vpc.cloud.id
name = "${local.BASENAME_CLOUD}-${local.zone}-pubgw"
zone = local.zone
}
resource "ibm_is_public_gateway" "bastion" {
count = var.bastion_pgw ? 1 : 0
resource_group = data.ibm_resource_group.all_rg.id
vpc = ibm_is_vpc.cloud.id
name = "${local.BASENAME_CLOUD}-${local.zone}-pubgw"
zone = local.zone
}
resource "ibm_is_subnet" "cloud" {
depends_on = [ibm_is_vpc_address_prefix.cloud]
name = "${local.BASENAME_CLOUD}-cloud"
resource_group = data.ibm_resource_group.all_rg.id
vpc = ibm_is_vpc.cloud.id
zone = local.zone
ipv4_cidr_block = local.cidr_cloud_subnet
public_gateway = join("", ibm_is_public_gateway.cloud.*.id)
}
# bastion subnet and instance values needed by the bastion module
resource "ibm_is_subnet" "bastion" {
depends_on = [ibm_is_vpc_address_prefix.cloud]
name = "${local.BASENAME_CLOUD}-bastion"
resource_group = data.ibm_resource_group.all_rg.id
vpc = ibm_is_vpc.cloud.id
zone = local.zone
ipv4_cidr_block = local.cidr_cloud_bastion
public_gateway = join("", ibm_is_public_gateway.bastion.*.id)
}
resource "ibm_is_vpn_gateway" "cloud" {
name = local.BASENAME_CLOUD
resource_group = data.ibm_resource_group.all_rg.id
subnet = ibm_is_subnet.cloud.id
mode = "policy"
tags = local.tags
}
resource "ibm_is_vpn_gateway_connection" "cloud" {
name = local.BASENAME_CLOUD
vpn_gateway = ibm_is_vpn_gateway.cloud.id
peer_address = ibm_is_floating_ip.onprem.address
preshared_key = local.PRESHARED_KEY
admin_state_up = true
local_cidrs = [local.cidr_cloud_1]
peer_cidrs = [local.cidr_onprem_1]
}
/*------------------------*/
locals {
user_data_cloud = <<-EOF
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive
apt -qq -y update < /dev/null
apt -qq -y install nodejs npm < /dev/null
EOF
}
locals {
bastion_ingress_cidr = "0.0.0.0/0" # DANGER: cidr range that can ssh to the bastion when maintenance is enabled
maintenance_egress_cidr = "0.0.0.0/0" # cidr range required to contact software repositories when maintenance is enabled
}
module "bastion" {
source = "../vpc-secure-management-bastion-server/tfmodule"
basename = local.BASENAME_CLOUD
ibm_is_vpc_id = ibm_is_vpc.cloud.id
ibm_is_resource_group_id = data.ibm_resource_group.all_rg.id
zone = local.zone
remote = local.bastion_ingress_cidr
profile = var.profile
ibm_is_image_id = data.ibm_is_image.os.id
ibm_is_ssh_key_id = data.ibm_is_ssh_key.sshkey.id
ibm_is_subnet_id = ibm_is_subnet.bastion.id
}
# maintenance will require ingress from the bastion, so the bastion has output a maintenance SG
# maintenance may also include installing new versions of open source software that are not in the IBM mirrors
# add the additional egress required to the maintenance security group exported by the bastion
# for example at 53 DNS, 80 http, and 443 https probably make sense
resource "ibm_is_security_group_rule" "maintenance_egress_443" {
group = module.bastion.security_group_id
direction = "outbound"
remote = local.maintenance_egress_cidr
tcp {
port_min = "443"
port_max = "443"
}
}
resource "ibm_is_security_group_rule" "maintenance_egress_80" {
group = module.bastion.security_group_id
direction = "outbound"
remote = "0.0.0.0/0"
tcp {
port_min = 80
port_max = 80
}
}
resource "ibm_is_security_group_rule" "maintenance_egress_53" {
group = module.bastion.security_group_id
direction = "outbound"
remote = "0.0.0.0/0"
tcp {
port_min = 53
port_max = 53
}
}
resource "ibm_is_security_group_rule" "maintenance_egress_udp_53" {
group = module.bastion.security_group_id
direction = "outbound"
remote = "0.0.0.0/0"
udp {
port_min = 53
port_max = 53
}
}
resource "ibm_is_security_group" "cloud" {
name = "${local.BASENAME_CLOUD}-sg"
vpc = ibm_is_vpc.cloud.id
resource_group = data.ibm_resource_group.all_rg.id
}
resource "ibm_is_security_group_rule" "cloud_ingress_tcp_80" {
group = ibm_is_security_group.cloud.id
direction = "inbound"
remote = "0.0.0.0/0"
tcp {
port_min = 80
port_max = 80
}
}
resource "ibm_is_security_group_rule" "cloud_ingress_tcp_443" {
group = ibm_is_security_group.cloud.id
direction = "inbound"
remote = "0.0.0.0/0"
tcp {
port_min = 443
port_max = 443
}
}
resource "ibm_is_security_group_rule" "cloud_ingress_tcp_22" {
group = ibm_is_security_group.cloud.id
direction = "inbound"
remote = "0.0.0.0/0"
tcp {
port_min = 22
port_max = 22
}
}
resource "ibm_is_security_group_rule" "cloud_ingress_icmp_8" {
group = ibm_is_security_group.cloud.id
direction = "inbound"
remote = "0.0.0.0/0"
icmp {
type = 8
}
}
resource "ibm_is_security_group_rule" "cloud_egress_tcp_all" {
group = ibm_is_security_group.cloud.id
direction = "outbound"
remote = "0.0.0.0/0"
}
#Cloud
locals {
# create either [cloud] or [cloud, maintenance] depending on the var.maintenance boolean
cloud_security_groups = split(
",",
var.maintenance ? format(
"%s,%s",
ibm_is_security_group.cloud.id,
module.bastion.security_group_id,
) : ibm_is_security_group.cloud.id,
)
}
resource "ibm_is_instance" "cloud" {
name = local.BASENAME_CLOUD
image = data.ibm_is_image.os.id
profile = var.profile
vpc = ibm_is_vpc.cloud.id
zone = local.zone
keys = [data.ibm_is_ssh_key.sshkey.id]
user_data = local.user_data_cloud
resource_group = data.ibm_resource_group.all_rg.id
primary_network_interface {
subnet = ibm_is_subnet.cloud.id
security_groups = flatten([local.cloud_security_groups])
}
}
locals {
bastion_ip = module.bastion.floating_ip_address
}