forked from bridgecrewio/terragoat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp_service.tf
64 lines (59 loc) · 2.33 KB
/
app_service.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
resource azurerm_app_service_plan "example" {
name = "terragoat-app-service-plan-${var.environment}"
location = azurerm_resource_group.example.location
resource_group_name = azurerm_resource_group.example.name
sku {
tier = "Dynamic"
size = "S1"
}
tags = {
git_commit = "898d5beaec7ffdef6df0d7abecff407362e2a74e"
git_file = "terraform/azure/app_service.tf"
git_last_modified_at = "2020-06-17 12:59:55"
git_last_modified_by = "[email protected]"
git_modifiers = "nimrodkor"
git_org = "bridgecrewio"
git_repo = "terragoat"
yor_trace = "6611bf45-fd5b-467e-b119-d533cd7539b8"
}
}
resource azurerm_app_service "app-service1" {
app_service_plan_id = azurerm_app_service_plan.example.id
location = var.location
name = "terragoat-app-service-${var.environment}${random_integer.rnd_int.result}"
resource_group_name = azurerm_resource_group.example.name
https_only = false
site_config {
min_tls_version = "1.1"
}
tags = {
git_commit = "81738b80d571fa3034633690d13ffb460e1e7dea"
git_file = "terraform/azure/app_service.tf"
git_last_modified_at = "2020-06-19 21:14:50"
git_last_modified_by = "[email protected]"
git_modifiers = "Adin.Ermie/nimrodkor"
git_org = "bridgecrewio"
git_repo = "terragoat"
yor_trace = "13be096d-c599-46e5-bf54-51c6e9732858"
}
}
resource azurerm_app_service "app-service2" {
app_service_plan_id = azurerm_app_service_plan.example.id
location = var.location
name = "terragoat-app-service-${var.environment}${random_integer.rnd_int.result}"
resource_group_name = azurerm_resource_group.example.name
https_only = true
auth_settings {
enabled = false
}
tags = {
git_commit = "5c6b5d60a8aa63a5d37e60f15185d13a967f0542"
git_file = "terraform/azure/app_service.tf"
git_last_modified_at = "2021-05-02 10:06:10"
git_last_modified_by = "[email protected]"
git_modifiers = "Adin.Ermie/nimrodkor"
git_org = "bridgecrewio"
git_repo = "terragoat"
yor_trace = "ec8295ab-af68-4cff-b0f1-b0cf5eaf1b75"
}
}