We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 235075c commit 25576b5Copy full SHA for 25576b5
disks.tf
@@ -17,4 +17,10 @@ resource "azapi_resource" "data_disks" {
17
name = each.value.name != "" ? each.value.name : "${var.name}dataDisk${format("%02d", index(var.data_disk_params, each.key) + 1)}"
18
parent_id = data.azurerm_resource_group.rg.id
19
tags = each.value.tags
20
+
21
+ lifecycle {
22
+ ignore_changes = [
23
+ body.properties.dynamic,
24
+ ]
25
+ }
26
}
0 commit comments