-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.tf
415 lines (342 loc) · 9.87 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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
variable "keyVaultName" {
type = string
}
variable "storageAccountName" {
type = string
}
variable "resourceGroupName" {
type = string
}
variable "sqlUsername" {
type = string
}
variable "sqlPassword" {
type = string
}
variable "databaseName" {
type = string
}
variable "dbServerName" {
type = string
}
variable "databaseEdition" {
type = string
}
variable "databaseTier" {
type = string
}
variable "aspNetEnvironment" {
type = string
}
variable "azureClusterResourceGroup" {
type = string
}
variable "databaseResourceGroup" {
type = string
}
variable "sqlApiUsername" {
type = string
}
variable "projectNumber" {
type = string
}
variable "team" {
type = string
}
variable "datadogApiKey" {
type = string
sensitive = true
}
variable "datadogAppKey" {
type = string
sensitive = true
}
variable "domainApi" {
type = string
}
variable "domainWeb" {
type = string
}
variable "elasticPoolName" {
type = string
}
// this variable is used for the keepers for the random resources https://registry.terraform.io/providers/hashicorp/random/latest/docs
variable "amd_id" {
type = string
sensitive = false
default = "1"
}
terraform {
required_version = ">= 0.11"
backend "azurerm" {
container_name = "terraform"
key = "terraform.tfstate"
}
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=3.91.0"
}
random = {
source = "hashicorp/random"
version = "~> 3.2.0"
}
datadog = {
source = "DataDog/datadog"
}
}
}
# Configure the Azure Provider
provider "azurerm" {
features {}
}
# Configure the Datadog provider
provider "datadog" {
api_key = var.datadogApiKey
app_key = var.datadogAppKey
}
data "azurerm_client_config" "current" {}
locals {
tags = {
"managed" = "terraformed"
"environment" = var.aspNetEnvironment
"team" = var.team
"projectNumber" = var.projectNumber
}
dataDogTeam = "@team-${var.team}%{ if var.aspNetEnvironment == "Staging"}-qa%{ endif }"
}
resource "azurerm_resource_group" "web" {
name = var.resourceGroupName
location = "West US"
tags = local.tags
}
#blob storage
resource "azurerm_storage_account" "web" {
name = var.storageAccountName
resource_group_name = azurerm_resource_group.web.name
location = azurerm_resource_group.web.location
account_replication_type = "GRS"
account_tier = "Standard"
tags = local.tags
}
resource "datadog_synthetics_test" "api_test" {
type = "api"
subtype = "http"
request_definition {
method = "GET"
url = "https://${var.domainApi}/healthz"
}
request_headers = {
Content-Type = "application/json"
}
assertion {
type = "statusCode"
operator = "is"
target = "200"
}
locations = ["aws:us-west-1","aws:us-east-1"]
options_list {
tick_every = 900
retry {
count = 2
interval = 30000
}
monitor_options {
renotify_interval = 120
}
}
#email subject, attach url in place of var.domainApi
name = "${var.aspNetEnvironment} - https://${var.domainApi}/healthz API test"
#email body
message = "Notify ${local.dataDogTeam}"
tags = ["env:${var.aspNetEnvironment}", "managed:terraformed", "team:${var.team}"]
status = "live"
}
resource "datadog_synthetics_test" "web_test" {
type = "api"
subtype = "http"
request_definition {
method = "GET"
url = "https://${var.domainWeb}"
}
request_headers = {
Content-Type = "application/json"
}
assertion {
type = "statusCode"
operator = "is"
target = "200"
}
locations = ["aws:us-west-1","aws:us-east-1"]
options_list {
tick_every = 900
retry {
count = 2
interval = 30000
}
monitor_options {
renotify_interval = 120
}
}
#email subject, attach url in place of var.domainApi
name = "${var.aspNetEnvironment} - https://${var.domainWeb} Web test"
#email body
message = "Notify ${local.dataDogTeam}"
tags = ["env:${var.aspNetEnvironment}", "managed:terraformed", "team:${var.team}"]
status = "live"
}
# outputs like this will be set as pipeline variables
# in this case the pipeline will have access to "$(TF_OUT_APPLICATiON_STORAGE_ACCOUNT_KEY)"
# to make this happen, you can do this with your pipeline:
# - task: TerraformCLI@0
# displayName: 'terraform output'
# inputs:
# command: output
output "application_storage_account_key" {
sensitive = true
value = azurerm_storage_account.web.primary_access_key
}
output "application_storage_account_connection_string" {
sensitive = true
value = azurerm_storage_account.web.primary_connection_string
}
# can be used in pipeline like $(TF_OUT_STORAGE_ACCOUNT_SAS_KEY)
# output "storage_account_sas_key" {
# sensitive = true
# value = data.azurerm_storage_account_sas.web.sas
# }
#sql
data "azurerm_mssql_server" "spoke" {
name = var.dbServerName
resource_group_name = var.databaseResourceGroup
}
data "azurerm_mssql_elasticpool" "spoke" {
name = var.elasticPoolName
resource_group_name = var.databaseResourceGroup
server_name = var.dbServerName
}
resource "azurerm_mssql_database" "database" {
name = var.databaseName
server_id = data.azurerm_mssql_server.spoke.id
collation = "SQL_Latin1_General_CP1_CI_AS"
license_type = "LicenseIncluded"
max_size_gb = 2
read_scale = false
sku_name = var.databaseTier
zone_redundant = false
elastic_pool_id = data.azurerm_mssql_elasticpool.spoke.id
enclave_type = "VBS"
long_term_retention_policy {
weekly_retention = "P3M"
monthly_retention = "P1Y"
yearly_retention = "P3Y"
week_of_year = 7
}
short_term_retention_policy {
retention_days = 30
}
tags = local.tags
}
output "database_id" {
value = azurerm_mssql_database.database.id
}
### BEGIN API Sql user/login ###
resource "random_password" "sqlApiPassword" {
length = 16
special = true
override_special = "!+-"
min_lower = 3
min_upper = 3
min_special = 3
min_numeric = 3
keepers = {
amd_id = var.amd_id
}
}
output "sql_api_password" {
sensitive = true
value = random_password.sqlApiPassword.result
depends_on = [
random_password.sqlApiPassword
]
}
### END API Sql user/login ###
#key vault was created prior to terraform run
resource "azurerm_key_vault" "web" {
name = var.keyVaultName
location = azurerm_resource_group.web.location
resource_group_name = azurerm_resource_group.web.name
soft_delete_retention_days = 7
purge_protection_enabled = false
tenant_id = data.azurerm_client_config.current.tenant_id
tags = local.tags
sku_name = "standard"
}
resource "azurerm_key_vault_access_policy" "thisPipeline" {
key_vault_id = azurerm_key_vault.web.id
tenant_id = data.azurerm_client_config.current.tenant_id
object_id = data.azurerm_client_config.current.object_id
key_permissions = [
"Backup", "Create", "Decrypt", "Delete", "Encrypt", "Get", "Import", "List", "Purge", "Recover", "Restore", "Sign", "UnwrapKey", "Update", "Verify", "WrapKey"
]
secret_permissions = [
"Backup", "Delete", "Get", "List", "Purge", "Recover", "Restore", "Set"
]
storage_permissions = [
"Backup", "Delete", "DeleteSAS", "Get", "GetSAS", "List", "ListSAS", "Recover", "RegenerateKey", "Restore", "Set", "SetSAS", "Update"
]
}
resource "azurerm_key_vault_secret" "sqlAdminPass" {
name = "sqlAdministratorPassword"
value = var.sqlPassword
key_vault_id = azurerm_key_vault.web.id
tags = local.tags
depends_on = [
azurerm_key_vault_access_policy.thisPipeline
]
}
resource "azurerm_key_vault_secret" "sqlAdminUser" {
name = "sqlAdministratorUsername"
value = var.sqlUsername
key_vault_id = azurerm_key_vault.web.id
tags = local.tags
depends_on = [
azurerm_key_vault_access_policy.thisPipeline
]
}
resource "azurerm_key_vault_secret" "sqlApiUsername" {
name = "sqlApiUsername"
value = var.sqlApiUsername
key_vault_id = azurerm_key_vault.web.id
tags = local.tags
depends_on = [
azurerm_key_vault_access_policy.thisPipeline
]
}
resource "azurerm_key_vault_secret" "sqlApiPassword" {
name = "sqlApiPassword"
value = random_password.sqlApiPassword.result
key_vault_id = azurerm_key_vault.web.id
tags = local.tags
depends_on = [
azurerm_key_vault_access_policy.thisPipeline
]
}
resource "azurerm_key_vault_secret" "sqlApiConnectionString" {
name = "sqlApiConnectionString"
value = "Data Source=tcp:${data.azurerm_mssql_server.spoke.fully_qualified_domain_name},1433;Initial Catalog=${var.databaseName};Persist Security Info=True;User ID=${var.sqlApiUsername};Password=${random_password.sqlApiPassword.result}"
key_vault_id = azurerm_key_vault.web.id
tags = local.tags
depends_on = [
azurerm_key_vault_access_policy.thisPipeline
]
}
resource "azurerm_key_vault_secret" "blobConnectionString" {
name = "blobConnectionString"
value = azurerm_storage_account.web.primary_connection_string
key_vault_id = azurerm_key_vault.web.id
tags = local.tags
depends_on = [
azurerm_key_vault_access_policy.thisPipeline
]
}