Skip to content

Commit

Permalink
fix velero storage
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolagospagopa committed Sep 27, 2023
1 parent f92130c commit 5343175
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aks-platform/02_aks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ module "aks" {
}

module "velero" {
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//kubernetes_cluster_velero?ref=8171afb"
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//kubernetes_cluster_velero?ref=v7.7.1"
count = var.aks_enabled ? 1 : 0
backup_storage_container_name = "velero-backup"
subscription_id = data.azurerm_subscription.current.subscription_id
Expand All @@ -127,7 +127,7 @@ module "velero" {
}

module "aks_namespace_backup" {
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//kubernetes_velero_backup?ref=f38e1ca"
source = "git::https://github.com/pagopa/terraform-azurerm-v3.git//kubernetes_velero_backup?ref=v7.7.0"
count = var.aks_enabled ? 1 : 0
# required
backup_name = "daily-backup"
Expand Down

0 comments on commit 5343175

Please sign in to comment.