Skip to content

Commit

Permalink
upgrated module version
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolagospagopa committed Aug 12, 2023
1 parent 658daa8 commit 44a1199
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/domains/diego-app/00_key_vault.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ data "azurerm_key_vault" "kv_domain" {
}

module "domain_key_vault_secrets_query" {
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//key_vault_secrets_query?ref=v6.20.1"
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//key_vault_secrets_query?ref=v7.2.0"

key_vault_name = local.key_vault_domain_name
resource_group = local.key_vault_domain_resource_group
Expand Down
2 changes: 1 addition & 1 deletion src/domains/diego-app/02_namespace_domain.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resource "kubernetes_namespace" "domain_namespace" {
}

module "domain_pod_identity" {
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//kubernetes_pod_identity?ref=v6.20.2"
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//kubernetes_pod_identity?ref=v7.2.0"

resource_group_name = local.aks_resource_group_name
location = var.location
Expand Down
4 changes: 2 additions & 2 deletions src/domains/diego-app/80_middleware_tools.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "tls_checker" {
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//tls_checker?ref=v6.20.1"
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//tls_checker?ref=v7.2.0"

https_endpoint = local.domain_aks_hostname
alert_name = local.domain_aks_hostname
Expand All @@ -20,7 +20,7 @@ module "tls_checker" {


module "cert_mounter" {
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//cert_mounter?ref=v6.20.1"
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//cert_mounter?ref=v7.2.0"
namespace = var.domain
certificate_name = replace(local.domain_aks_hostname, ".", "-")
kv_name = data.azurerm_key_vault.kv_domain.name
Expand Down
2 changes: 1 addition & 1 deletion src/domains/diego-container-apps/00_key_vault.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# }

# module "domain_key_vault_secrets_query" {
# source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//key_vault_secrets_query?ref=v5.3.0"
# source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//key_vault_secrets_query?ref=v7.2.0"

# key_vault_name = local.key_vault_domain_name
# resource_group = local.key_vault_domain_resource_group
Expand Down
2 changes: 1 addition & 1 deletion src/domains/diego-container-apps/02_caenv_dapr.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Subnet to host the api config
module "container_apps_dapr_snet" {
count = var.is_resource_enabled.container_app_dapr ? 1 : 0
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//subnet?ref=v5.3.0"
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//subnet?ref=v7.2.0"
name = "${local.project}-container-apps-dapr-snet"
address_prefixes = var.cidr_subnet_container_apps_dapr
virtual_network_name = data.azurerm_virtual_network.vnet_core.name
Expand Down
2 changes: 1 addition & 1 deletion src/domains/diego-container-apps/02_caenv_diego.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ resource "azurerm_resource_group" "container_app_diego" {
module "container_apps_snet" {
count = var.is_resource_enabled.container_app_diego_env ? 1 : 0

source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//subnet?ref=v5.3.0"
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//subnet?ref=v7.2.0"
name = "${local.project}-container-apps-snet"
address_prefixes = var.cidr_subnet_container_apps
virtual_network_name = data.azurerm_virtual_network.vnet_core.name
Expand Down

0 comments on commit 44a1199

Please sign in to comment.