Skip to content

Commit

Permalink
fixed duration type
Browse files Browse the repository at this point in the history
  • Loading branch information
kevindelmont authored Dec 30, 2024
1 parent dd11e63 commit 110f389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/recovery_vault/backup_policies_vm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ resource "azurerm_backup_policy_vm" "vm" {
archived_restore_point {
mode = lookup(each.value.tiering_policy, "mode", null)
duration = try(each.value.tiering_policy.duration, null)
duration_type = try(each.value.tiering_policy.type, null)
duration_type = try(each.value.tiering_policy.duration_type, null)
}
}
}
Expand Down

0 comments on commit 110f389

Please sign in to comment.