-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
272 lines (230 loc) · 7.12 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
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
provider "azurerm" {
subscription_id = var.subscription_id
client_id = var.client_id
client_secret = var.client_secret
tenant_id = var.tenant_id
version = "=1.44.0"
}
resource "azurerm_resource_group" "vault" {
name = "${var.environment}-vault-rg"
location = var.location
tags = {
Owner = "stoffee@hashicorp.com"
TTL = "96h"
}
}
resource "random_id" "keyvault" {
byte_length = 4
}
data "azurerm_client_config" "current" {
}
resource "azurerm_key_vault" "vault" {
name = "${var.environment}-vault-${random_id.keyvault.hex}"
location = azurerm_resource_group.vault.location
resource_group_name = azurerm_resource_group.vault.name
enabled_for_deployment = true
enabled_for_disk_encryption = true
tenant_id = var.tenant_id
sku_name = "standard"
tags = {
Owner = "stoffee@hashicorp.com"
TTL = "96h"
}
access_policy {
tenant_id = var.tenant_id
#object_id = "${var.object_id}"
object_id = data.azurerm_client_config.current.service_principal_object_id
key_permissions = [
"get",
"list",
"create",
"delete",
"update",
"wrapKey",
"unwrapKey",
]
}
network_acls {
default_action = "Allow"
bypass = "AzureServices"
}
}
resource "azurerm_key_vault_key" "generated" {
name = var.key_name
key_vault_id = azurerm_key_vault.vault.id
key_type = "RSA"
key_size = 2048
key_opts = [
"decrypt",
"encrypt",
"sign",
"unwrapKey",
"verify",
"wrapKey",
]
}
output "key_vault_name" {
value = "${azurerm_key_vault.vault.name}"
}
output "public_ip_for_instance" {
value = "${azurerm_public_ip.tf_publicip.ip_address}"
}
# ---------------------
# Create Vault VM
# ---------------------
resource "azurerm_virtual_network" "tf_network" {
name = "network-${random_id.keyvault.hex}"
address_space = ["10.0.0.0/16"]
location = var.location
resource_group_name = azurerm_resource_group.vault.name
tags = {
environment = "${var.environment}-${random_id.keyvault.hex}"
Owner = "stoffee@hashicorp.com"
TTL = "96h"
}
}
resource "azurerm_subnet" "tf_subnet" {
name = "subnet-${random_id.keyvault.hex}"
resource_group_name = azurerm_resource_group.vault.name
virtual_network_name = azurerm_virtual_network.tf_network.name
address_prefix = "10.0.1.0/24"
}
resource "azurerm_public_ip" "tf_publicip" {
name = "ip-${random_id.keyvault.hex}"
location = var.location
resource_group_name = azurerm_resource_group.vault.name
allocation_method = "Dynamic"
tags = {
environment = "${var.environment}-${random_id.keyvault.hex}"
Owner = "stoffee@hashicorp.com"
TTL = "96h"
}
}
resource "azurerm_network_security_group" "tf_nsg" {
name = "nsg-${random_id.keyvault.hex}"
location = var.location
resource_group_name = azurerm_resource_group.vault.name
security_rule {
name = "SSH"
priority = 1001
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "22"
source_address_prefix = "*"
destination_address_prefix = "*"
}
security_rule {
name = "Vault"
priority = 1002
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
destination_port_range = "8200"
source_address_prefix = "*"
destination_address_prefix = "*"
}
tags = {
environment = "${var.environment}-${random_id.keyvault.hex}"
Owner = "stoffee@hashicorp.com"
TTL = "96h"
}
}
resource "azurerm_network_interface" "tf_nic" {
name = "nic-${random_id.keyvault.hex}"
location = var.location
resource_group_name = azurerm_resource_group.vault.name
network_security_group_id = azurerm_network_security_group.tf_nsg.id
ip_configuration {
name = "nic-${random_id.keyvault.hex}"
subnet_id = azurerm_subnet.tf_subnet.id
private_ip_address_allocation = "dynamic"
public_ip_address_id = azurerm_public_ip.tf_publicip.id
}
tags = {
environment = "${var.environment}-${random_id.keyvault.hex}"
Owner = "stoffee@hashicorp.com"
TTL = "96h"
}
}
resource "random_id" "tf_random_id" {
keepers = {
# Generate a new ID only when a new resource group is defined
resource_group = azurerm_resource_group.vault.name
}
byte_length = 8
}
resource "azurerm_storage_account" "tf_storageaccount" {
name = "sa${random_id.keyvault.hex}"
resource_group_name = azurerm_resource_group.vault.name
location = var.location
account_tier = "Standard"
account_replication_type = "LRS"
tags = {
environment = "${var.environment}-${random_id.keyvault.hex}"
Owner = "stoffee@hashicorp.com"
TTL = "96h"
}
}
data "template_file" "setup" {
template = "${file("${path.module}/setup.tpl")}"
vars = {
resource_group_name = azurerm_resource_group.vault.name
vm_name = var.vm_name
vault_download_url = var.vault_download_url
tenant_id = var.tenant_id
subscription_id = var.subscription_id
client_id = var.client_id
client_secret = var.client_secret
vault_name = azurerm_key_vault.vault.name
key_name = var.key_name
tls_cert_file = var.tls_cert_file
tls_key_file = var.tls_key_file
}
}
# Create virtual machine
resource "azurerm_virtual_machine" "tf_vm" {
name = var.vm_name
location = var.location
resource_group_name = azurerm_resource_group.vault.name
network_interface_ids = ["${azurerm_network_interface.tf_nic.id}"]
vm_size = var.azure_vm_size
identity {
type = "SystemAssigned"
}
storage_os_disk {
name = "OsDisk"
caching = "ReadWrite"
create_option = "FromImage"
managed_disk_type = "Premium_LRS"
}
storage_image_reference {
publisher = "Canonical"
offer = "UbuntuServer"
sku = "18.04-LTS"
version = "latest"
}
os_profile {
computer_name = var.vm_name
admin_username = "stoffee"
custom_data = base64encode("${data.template_file.setup.rendered}")
}
os_profile_linux_config {
disable_password_authentication = true
ssh_keys {
path = "/home/stoffee/.ssh/authorized_keys"
key_data = var.public_key
}
}
boot_diagnostics {
enabled = "true"
storage_uri = azurerm_storage_account.tf_storageaccount.primary_blob_endpoint
}
tags = {
environment = "${var.environment}-${random_id.keyvault.hex}"
Owner = "stoffee@hashicorp.com"
TTL = "96h"
}
}