|
1 | | -module "tls_checker" { |
2 | | - source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//tls_checker?ref=v8.42.1" |
3 | | - |
4 | | - https_endpoint = local.domain_aks_hostname |
5 | | - alert_name = local.domain_aks_hostname |
6 | | - alert_enabled = true |
7 | | - helm_chart_present = true |
8 | | - namespace = kubernetes_namespace.domain_namespace.metadata[0].name |
9 | | - location_string = var.location |
10 | | - kv_secret_name_for_application_insights_connection_string = "dvopla-d-itn-appinsights-connection-string" |
11 | | - keyvault_name = data.azurerm_key_vault.kv_domain.name |
12 | | - keyvault_tenant_id = data.azurerm_client_config.current.tenant_id |
13 | | - application_insights_resource_group = data.azurerm_resource_group.monitor_rg.name |
14 | | - application_insights_id = data.azurerm_application_insights.application_insights.id |
15 | | - application_insights_action_group_ids = [data.azurerm_monitor_action_group.slack.id, data.azurerm_monitor_action_group.email.id] |
16 | | - |
17 | | - workload_identity_enabled = true |
18 | | - workload_identity_service_account_name = module.workload_identity.workload_identity_service_account_name |
19 | | - workload_identity_client_id = module.workload_identity.workload_identity_client_id |
20 | | -} |
21 | | - |
22 | | - |
23 | 1 | module "cert_mounter" { |
24 | | - source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//cert_mounter?ref=v8.42.1" |
| 2 | + # source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//cert_mounter?ref=v8.42.1" |
| 3 | + source = "./.terraform/modules/__v4__/cert_mounter" |
| 4 | + |
25 | 5 | namespace = var.domain |
26 | 6 | certificate_name = replace(local.domain_aks_hostname, ".", "-") |
27 | 7 | kv_name = data.azurerm_key_vault.kv_domain.name |
28 | 8 | tenant_id = data.azurerm_subscription.current.tenant_id |
29 | 9 |
|
30 | | - workload_identity_enabled = true |
31 | 10 | workload_identity_service_account_name = module.workload_identity.workload_identity_service_account_name |
32 | 11 | workload_identity_client_id = module.workload_identity.workload_identity_client_id |
33 | 12 |
|
|
0 commit comments