Skip to content

Commit da75dd1

Browse files
Merge pull request #454 from BillAnastasiadis/az_timeout
Draft: Add timeouts for azure disk attachments
2 parents e508160 + a7483eb commit da75dd1

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • terraform/azure/modules/hana_node

terraform/azure/modules/hana_node/main.tf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,10 @@ resource "azurerm_virtual_machine_data_disk_attachment" "hana_data_disk_attachme
382382
lun = count.index % local.disks_number
383383
caching = element(local.disks_caching, count.index % local.disks_number)
384384
timeouts {
385-
read = "30m"
385+
read = "30m"
386+
create = "30m"
387+
update = "30m"
388+
delete = "30m"
386389
}
387390
}
388391

0 commit comments

Comments
 (0)