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
When using terraform 1.3.6,
terraform shows a diff due to the stage changing to read.
# module.machine_us_west_2["pg1-1"].toolbox_external.all_block_devices[0] has changed~ resource "toolbox_external""all_block_devices" {
id = "-"~ stage = "create" ->"read"# (7 unchanged attributes hidden)
}
# module.machine_us_west_2["pg1-1"].toolbox_external.final_block_devices[0] has changed~ resource "toolbox_external""final_block_devices" {
id = "-"~ stage = "create" ->"read"# (7 unchanged attributes hidden)
}
# module.machine_us_west_2["pg1-1"].toolbox_external.initial_block_devices[0] has changed~ resource "toolbox_external""initial_block_devices" {
id = "-"~ stage = "create" ->"read"# (7 unchanged attributes hidden)
}
Unless you have made equivalent changes to your configuration, or ignored the relevant attributes using ignore_changes, the following plan may include actions to undo or respond to these changes.
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Changes to Outputs:
~ modules = (sensitive value)
~ servers = (sensitive value)
You can apply this plan to save these new output values to the Terraform state, without changing any real infrastructure.
Do you want to perform these actions?
Terraform will perform the actions described above.
Only 'yes' will be accepted to approve.
Enter a value:
With Terraform 1.5.5, terraform does not show the stage diff.
The text was updated successfully, but these errors were encountered:
When using terraform 1.3.6,
terraform shows a diff due to the
stage
changing to read.With Terraform 1.5.5, terraform does not show the
stage
diff.The text was updated successfully, but these errors were encountered: