Skip to content

Commit

Permalink
[EC-393] Import iopstcosmosbonusbackup in Terraform (#1124)
Browse files Browse the repository at this point in the history
  • Loading branch information
Krusty93 authored Aug 8, 2024
1 parent 8007466 commit e879249
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module "storage_account_cosmos_backup" {
source = "github.com/pagopa/terraform-azurerm-v3//storage_account?ref=v8.36.1"

name = "${replace(var.project, "-", "")}stcosmosbonusbackup"
resource_group_name = var.resource_group_name
location = var.location

account_kind = "StorageV2"
account_tier = "Standard"
access_tier = "Cool"
account_replication_type = "GRS"
public_network_access_enabled = false
allow_nested_items_to_be_public = true
use_legacy_defender_version = false
blob_container_delete_retention_days = 7
blob_delete_retention_days = 7

enable_low_availability_alert = false

tags = var.tags
}

0 comments on commit e879249

Please sign in to comment.