-
Notifications
You must be signed in to change notification settings - Fork 703
/
function_app.tf
53 lines (48 loc) · 3.33 KB
/
function_app.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
module "function_apps" {
source = "./modules/webapps/function_app"
depends_on = [module.networking]
for_each = local.webapp.function_apps
name = each.value.name
client_config = local.client_config
dynamic_app_settings = try(each.value.dynamic_app_settings, {})
app_settings = try(each.value.app_settings, null)
combined_objects = local.dynamic_app_settings_combined_objects
app_service_plan_id = can(each.value.app_service_plan_id) || can(each.value.app_service_plan_key) == false ? try(each.value.app_service_plan_id, null) : local.combined_objects_app_service_plans[try(each.value.lz_key, local.client_config.landingzone_key)][each.value.app_service_plan_key].id
settings = each.value.settings
application_insight = try(each.value.application_insight_key, null) == null ? null : module.azurerm_application_insights[each.value.application_insight_key]
diagnostic_profiles = try(each.value.diagnostic_profiles, null)
diagnostics = local.combined_diagnostics
identity = try(each.value.identity, null)
connection_strings = try(each.value.connection_strings, {})
storage_account_name = try(data.azurerm_storage_account.function_apps[each.key].name, null)
storage_account_access_key = try(data.azurerm_storage_account.function_apps[each.key].primary_access_key, null)
tags = try(each.value.tags, null)
# subnet_id = try(
# each.value.subnet_id,
# local.combined_objects_networking[try(each.value.settings.lz_key, local.client_config.landingzone_key)][each.value.settings.vnet_key].subnets[each.value.settings.subnet_key].id,
# null
# )
global_settings = local.global_settings
private_dns = local.combined_objects_private_dns
private_endpoints = try(each.value.private_endpoints, {})
vnets = local.combined_objects_networking
virtual_subnets = local.combined_objects_virtual_subnets
remote_objects = {
subnets = try(local.combined_objects_networking[try(each.value.settings.lz_key, local.client_config.landingzone_key)][each.value.settings.vnet_key].subnets, null)
}
base_tags = local.global_settings.inherit_tags
resource_group = local.combined_objects_resource_groups[try(each.value.resource_group.lz_key, local.client_config.landingzone_key)][try(each.value.resource_group_key, each.value.resource_group.key)]
resource_group_name = can(each.value.resource_group.name) || can(each.value.resource_group_name) ? try(each.value.resource_group.name, each.value.resource_group_name) : null
location = try(local.global_settings.regions[each.value.region], null)
}
output "function_apps" {
value = module.function_apps
}
data "azurerm_storage_account" "function_apps" {
for_each = {
for key, value in local.webapp.function_apps : key => value
if try(value.storage_account_key, null) != null
}
name = local.combined_objects_storage_accounts[try(each.value.lz_key, local.client_config.landingzone_key)][each.value.storage_account_key].name
resource_group_name = local.combined_objects_storage_accounts[try(each.value.lz_key, local.client_config.landingzone_key)][each.value.storage_account_key].resource_group_name
}