You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"azurerm_backup_protected_vm" {
source="./modules/azurerm/r/azurerm_backup_protected_vm"# backup_policy_id - (required) is a type of stringbackup_policy_id=null# recovery_vault_name - (required) is a type of stringrecovery_vault_name=null# resource_group_name - (required) is a type of stringresource_group_name=null# source_vm_id - (required) is a type of stringsource_vm_id=null# tags - (optional) is a type of map of stringtags={}
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_backup_protected_vm""this" {
# backup_policy_id - (required) is a type of stringbackup_policy_id=var.backup_policy_id# recovery_vault_name - (required) is a type of stringrecovery_vault_name=var.recovery_vault_name# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# source_vm_id - (required) is a type of stringsource_vm_id=var.source_vm_id# tags - (optional) is a type of map of stringtags=var.tagsdynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# read - (optional) is a type of stringread=timeouts.value["read"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}