-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmodules.tf
47 lines (39 loc) · 1.1 KB
/
modules.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
module "run" {
source = "claranet/run/azurerm"
version = "x.x.x"
client_name = var.client_name
location = module.azure_region.location
location_short = module.azure_region.location_short
environment = var.environment
stack = var.stack
resource_group_name = module.rg.name
monitoring_function_splunk_token = var.splunk_token
monitoring_function_metrics_extra_dimensions = {
env = var.environment
sfx_monitored = "true"
}
# IaaS
automation_account_enabled = true
backup_vm_enabled = true
backup_managed_disk_enabled = true
backup_file_share_enabled = true
backup_storage_blob_enabled = true
backup_postgresql_enabled = true
update_center_enabled = true
update_center_maintenance_configurations = [
{
configuration_name = "daily"
start_date_time = "2023-08-21 04:00"
recur_every = "1Day"
},
{
configuration_name = "weekly"
start_date_time = "1900-01-01 03:00"
recur_every = "1Week"
}
]
vm_monitoring_enabled = true
extra_tags = {
foo = "bar"
}
}