dependency/azapi_examples/Microsoft.RecoveryServices_vaults_backupconfig@2024-04-01/main.tf (49 lines of code) (raw):

terraform { required_providers { azapi = { source = "Azure/azapi" } } } provider "azapi" { skip_provider_registration = false } variable "resource_name" { type = string default = "acctest0001" } variable "location" { type = string default = "westeurope" } resource "azapi_resource" "resourceGroup" { type = "Microsoft.Resources/resourceGroups@2020-06-01" name = var.resource_name location = var.location } resource "azapi_resource" "vault" { type = "Microsoft.RecoveryServices/vaults@2024-04-01" parent_id = azapi_resource.resourceGroup.id name = var.resource_name location = var.location body = { properties = { publicNetworkAccess = "Enabled" } sku = { name = "Standard" } } schema_validation_enabled = false response_export_values = ["*"] } resource "azapi_update_resource" "softDeleteRetentionPeriodInDays" { type = "Microsoft.RecoveryServices/vaults/backupconfig@2024-04-01" parent_id = azapi_resource.vault.id name = "vaultconfig" body = { properties = { softDeleteRetentionPeriodInDays = 14 } } }