forked from scepman/terraform-azurerm-scepman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
355 lines (282 loc) · 12.9 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
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
}
}
required_version = ">= 1.3"
}
data "azurerm_client_config" "current" {}
# Storage Account
resource "azurerm_storage_account" "storage" {
name = var.storage_account_name
resource_group_name = var.resource_group_name
location = var.location
account_tier = "Standard"
account_replication_type = "LRS"
tags = var.tags
}
# Key Vault
resource "azurerm_key_vault" "vault" {
name = var.key_vault_name
resource_group_name = var.resource_group_name
location = var.location
tenant_id = data.azurerm_client_config.current.tenant_id
sku_name = "premium"
enable_rbac_authorization = false
enabled_for_disk_encryption = false
enabled_for_deployment = false
enabled_for_template_deployment = false
soft_delete_retention_days = 7
purge_protection_enabled = true
tags = var.tags
}
# Log Analytics Workspace
# Get exisiting Log Analytics Workspace if law_resource_group_name is defined
data "azurerm_log_analytics_workspace" "existing-law" {
count = var.law_resource_group_name != null ? 1 : 0
name = var.law_name
resource_group_name = var.law_resource_group_name
}
resource "azurerm_log_analytics_workspace" "law" {
count = length(data.azurerm_log_analytics_workspace.existing-law) > 0 ? 0 : 1
name = var.law_name
resource_group_name = var.resource_group_name
location = var.location
sku = "PerGB2018"
retention_in_days = 30
tags = var.tags
}
locals {
law_id = length(data.azurerm_log_analytics_workspace.existing-law) > 0 ? data.azurerm_log_analytics_workspace.existing-law[0].id : azurerm_log_analytics_workspace.law[0].id
law_workspace_id = length(data.azurerm_log_analytics_workspace.existing-law) > 0 ? data.azurerm_log_analytics_workspace.existing-law[0].workspace_id : azurerm_log_analytics_workspace.law[0].workspace_id
law_shared_key = length(data.azurerm_log_analytics_workspace.existing-law) > 0 ? data.azurerm_log_analytics_workspace.existing-law[0].primary_shared_key : azurerm_log_analytics_workspace.law[0].primary_shared_key
}
# Application Insights
# Creating Application Insights will not allow terraform to destroy the ressource group, as app insights create hidden rules that can (currently) not be managed by terraform
resource "azurerm_application_insights" "scepman-primary" {
count = var.enable_application_insights == true ? 1 : 0
name = format("%s_app-insights", var.app_service_name_primary)
location = var.location
resource_group_name = var.resource_group_name
workspace_id = local.law_id
application_type = "web"
tags = var.tags
}
resource "azurerm_application_insights" "scepman-cm" {
count = var.enable_application_insights == true ? 1 : 0
name = format("%s_app-insights", var.app_service_name_certificate_master)
location = var.location
resource_group_name = var.resource_group_name
workspace_id = local.law_id
application_type = "web"
tags = var.tags
}
# App Service Plan
resource "azurerm_service_plan" "plan" {
count = var.service_plan_resource_id == null ? 1 : 0
name = var.service_plan_name
resource_group_name = var.resource_group_name
location = var.location
os_type = "Windows"
sku_name = var.service_plan_sku
tags = var.tags
}
# Scepman App Service
locals {
service_plan_resource_id = var.service_plan_resource_id != null ? var.service_plan_resource_id : azurerm_service_plan.plan[0].id
app_settings_primary_defaults = {
"AppConfig:LicenseKey" = "trial"
"AppConfig:UseRequestedKeyUsages" = "true",
"AppConfig:ValidityPeriodDays" = "730",
"AppConfig:IntuneValidation:ValidityPeriodDays" = "365",
"AppConfig:DirectCSRValidation:Enabled" = "true",
"AppConfig:IntuneValidation:DeviceDirectory" = "AADAndIntune",
"AppConfig:KeyVaultConfig:RootCertificateConfig:CertificateName" = "SCEPman-Root-CA-V1",
"AppConfig:KeyVaultConfig:RootCertificateConfig:KeyType" = "RSA-HSM"
"AppConfig:ValidityClockSkewMinutes" = "1440",
"AppConfig:KeyVaultConfig:RootCertificateConfig:Subject" = format("CN=SCEPman-Root-CA-V1,OU=%s,O=\"%s\"", data.azurerm_client_config.current.tenant_id, var.organization_name)
}
# if app insight exists, add to app settings
app_settings_primary_app_insights = length(azurerm_application_insights.scepman-primary) > 0 ? {
"APPINSIGHTS_INSTRUMENTATIONKEY" = azurerm_application_insights.scepman-primary[0].instrumentation_key
"APPLICATIONINSIGHTS_CONNECTION_STRING" = azurerm_application_insights.scepman-primary[0].connection_string
"APPINSIGHTS_PROFILERFEATURE_VERSION" = "1.0.0"
"APPINSIGHTS_SNAPSHOTFEATURE_VERSION" = "1.0.0"
"DiagnosticServices_EXTENSION_VERSION" = "~3"
"InstrumentationEngine_EXTENSION_VERSION" = "~1"
"SnapshotDebugger_EXTENSION_VERSION" = "~1"
"XDT_MicrosoftApplicationInsights_BaseExtensions" = "disabled"
"XDT_MicrosoftApplicationInsights_Java" = "1"
"XDT_MicrosoftApplicationInsights_NodeJS" = "1"
"XDT_MicrosoftApplicationInsights_PreemptSdk" = "disabled"
"ApplicationInsightsAgent_EXTENSION_VERSION" = "~2"
"XDT_MicrosoftApplicationInsights_Mode" = "recommended"
} : {}
app_settings_primary_base = {
"WEBSITE_RUN_FROM_PACKAGE" = var.artifacts_url_primary
"AppConfig:BaseUrl" = format("https://%s.azurewebsites.net", var.app_service_name_primary)
"AppConfig:AuthConfig:TenantId" = data.azurerm_client_config.current.tenant_id
"AppConfig:KeyVaultConfig:KeyVaultURL" = azurerm_key_vault.vault.vault_uri
"AppConfig:CertificateStorage:TableStorageEndpoint" = azurerm_storage_account.storage.primary_table_endpoint
"AppConfig:LoggingConfig:WorkspaceId" = local.law_workspace_id
"AppConfig:LoggingConfig:SharedKey" = local.law_shared_key
}
// Merge maps will overwrite first by last > default variables, custom variables, resource variables
app_settings_primary = merge(local.app_settings_primary_defaults, var.app_settings_primary, local.app_settings_primary_app_insights, local.app_settings_primary_base)
}
resource "azurerm_windows_web_app" "app" {
name = var.app_service_name_primary
resource_group_name = var.resource_group_name
location = var.location
https_only = false
service_plan_id = local.service_plan_resource_id
identity {
type = "SystemAssigned"
}
site_config {
health_check_path = "/probe"
use_32_bit_worker = false
application_stack {
current_stack = "dotnet"
dotnet_version = "v6.0"
}
}
app_settings = local.app_settings_primary
tags = var.tags
logs {
detailed_error_messages = var.app_service_logs_detailed_error_messages
failed_request_tracing = var.app_service_logs_failed_request_tracing
application_logs {
file_system_level = var.app_service_application_logs_file_system_level
}
http_logs {
file_system {
retention_in_days = length(azurerm_application_insights.scepman-primary) > 0 ? 0 : var.app_service_retention_in_days
retention_in_mb = var.app_service_retention_in_mb
}
}
}
lifecycle {
# CA Key type must be specific
precondition {
condition = local.app_settings_primary["AppConfig:KeyVaultConfig:RootCertificateConfig:KeyType"] == "RSA" || local.app_settings_primary["AppConfig:KeyVaultConfig:RootCertificateConfig:KeyType"] == "RSA-HSM"
error_message = "Possible values are 'RSA' or 'RSA-HSM'"
}
ignore_changes = [
app_settings["AppConfig:AuthConfig:ApplicationId"],
app_settings["AppConfig:AuthConfig:ManagedIdentityEnabledForWebsiteHostname"],
app_settings["AppConfig:AuthConfig:ManagedIdentityEnabledOnUnixTime"],
app_settings["AppConfig:AuthConfig:ManagedIdentityPermissionLevel"],
app_settings["AppConfig:CertMaster:URL"],
app_settings["WEBSITE_HEALTHCHECK_MAXPINGFAILURES"],
sticky_settings
]
}
}
# Certificate Master App Service
locals {
app_settings_certificate_master_defaults = {}
# if app insight exists, add to app settings
app_settings_certificate_master_app_insights = length(azurerm_application_insights.scepman-cm) > 0 ? {
"APPINSIGHTS_INSTRUMENTATIONKEY" = azurerm_application_insights.scepman-cm[0].instrumentation_key
"APPLICATIONINSIGHTS_CONNECTION_STRING" = azurerm_application_insights.scepman-cm[0].connection_string
"APPINSIGHTS_PROFILERFEATURE_VERSION" = "1.0.0"
"APPINSIGHTS_SNAPSHOTFEATURE_VERSION" = "1.0.0"
"DiagnosticServices_EXTENSION_VERSION" = "~3"
"InstrumentationEngine_EXTENSION_VERSION" = "~1"
"SnapshotDebugger_EXTENSION_VERSION" = "~1"
"XDT_MicrosoftApplicationInsights_BaseExtensions" = "disabled"
"XDT_MicrosoftApplicationInsights_Java" = "1"
"XDT_MicrosoftApplicationInsights_NodeJS" = "1"
"XDT_MicrosoftApplicationInsights_PreemptSdk" = "disabled"
"ApplicationInsightsAgent_EXTENSION_VERSION" = "~2"
"XDT_MicrosoftApplicationInsights_Mode" = "recommended"
} : {}
app_settings_certificate_master_base = {
"WEBSITE_RUN_FROM_PACKAGE" = var.artifacts_url_certificate_master
"AppConfig:AzureStorage:TableStorageEndpoint" = azurerm_storage_account.storage.primary_table_endpoint
"AppConfig:SCEPman:URL" = format("https://%s", azurerm_windows_web_app.app.default_hostname)
"AppConfig:AuthConfig:TenantId" = data.azurerm_client_config.current.tenant_id
"AppConfig:LoggingConfig:WorkspaceId" = local.law_workspace_id
"AppConfig:LoggingConfig:SharedKey" = local.law_shared_key
}
// Merge maps will overwrite first by last > default variables, custom variables, resource variables
app_settings_certificate_master = merge(local.app_settings_certificate_master_defaults, var.app_settings_certificate_master, local.app_settings_certificate_master_app_insights, local.app_settings_certificate_master_base)
}
resource "azurerm_windows_web_app" "app_cm" {
name = var.app_service_name_certificate_master
resource_group_name = var.resource_group_name
location = var.location
service_plan_id = local.service_plan_resource_id
identity {
type = "SystemAssigned"
}
site_config {
health_check_path = "/probe"
use_32_bit_worker = false
application_stack {
current_stack = "dotnet"
dotnet_version = "v6.0"
}
}
app_settings = local.app_settings_certificate_master
tags = var.tags
logs {
detailed_error_messages = var.app_service_logs_detailed_error_messages
failed_request_tracing = var.app_service_logs_failed_request_tracing
application_logs {
file_system_level = var.app_service_application_logs_file_system_level
}
http_logs {
file_system {
retention_in_days = length(azurerm_application_insights.scepman-cm) > 0 ? 0 : var.app_service_retention_in_days
retention_in_mb = var.app_service_retention_in_mb
}
}
}
lifecycle {
ignore_changes = [
app_settings["AppConfig:AuthConfig:ApplicationId"],
app_settings["AppConfig:AuthConfig:ManagedIdentityEnabledOnUnixTime"],
app_settings["AppConfig:AuthConfig:ManagedIdentityPermissionLevel"],
app_settings["AppConfig:AuthConfig:SCEPmanAPIScope"],
app_settings["WEBSITE_HEALTHCHECK_MAXPINGFAILURES"],
sticky_settings
]
}
}
# Key Vault Access Policy
resource "azurerm_key_vault_access_policy" "scepman" {
key_vault_id = azurerm_key_vault.vault.id
tenant_id = data.azurerm_client_config.current.tenant_id
object_id = azurerm_windows_web_app.app.identity[0].principal_id
certificate_permissions = [
"Get",
"List",
"Create",
"ManageContacts"
]
key_permissions = [
"Get",
"Create",
"UnwrapKey",
"Sign"
]
secret_permissions = [
"Get",
"List",
"Set",
"Delete"
]
}
# Role Assignment - Storage Table Data Contributor
locals {
object_ids = { for key, item in [azurerm_windows_web_app.app, azurerm_windows_web_app.app_cm] : key => item.identity[0].principal_id }
}
resource "azurerm_role_assignment" "table_contributor" {
for_each = local.object_ids
scope = azurerm_storage_account.storage.id
role_definition_name = "Storage Table Data Contributor"
principal_id = each.value
}