github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/testing/equivalence-tests/outputs/drift_relevant_attributes/plan (about) 1 tfcoremock_simple_resource.base: Refreshing state... [id=f6f74ca6-e8ef-e51f-522c-433b9ed5038f] 2 tfcoremock_simple_resource.dependent: Refreshing state... [id=1b17b502-96c9-fcc3-3b09-2af1c3de6ad8] 3 4 Note: Objects have changed outside of Terraform 5 6 Terraform detected the following changes made outside of Terraform since the 7 last "terraform apply" which may have affected this plan: 8 9 # tfcoremock_simple_resource.base has changed 10 ~ resource "tfcoremock_simple_resource" "base" { 11 id = "f6f74ca6-e8ef-e51f-522c-433b9ed5038f" 12 ~ string = "Hello, world!" -> "Hello, drift!" 13 # (1 unchanged attribute hidden) 14 } 15 16 17 Unless you have made equivalent changes to your configuration, or ignored the 18 relevant attributes using ignore_changes, the following plan may include 19 actions to undo or respond to these changes. 20 21 ───────────────────────────────────────────────────────────────────────────── 22 23 Terraform used the selected providers to generate the following execution 24 plan. Resource actions are indicated with the following symbols: 25 ~ update in-place 26 27 Terraform will perform the following actions: 28 29 # tfcoremock_simple_resource.base will be updated in-place 30 ~ resource "tfcoremock_simple_resource" "base" { 31 id = "f6f74ca6-e8ef-e51f-522c-433b9ed5038f" 32 ~ number = 1 -> 0 33 ~ string = "Hello, drift!" -> "Hello, change!" 34 } 35 36 # tfcoremock_simple_resource.dependent will be updated in-place 37 ~ resource "tfcoremock_simple_resource" "dependent" { 38 id = "1b17b502-96c9-fcc3-3b09-2af1c3de6ad8" 39 ~ string = "Hello, world!" -> "Hello, change!" 40 } 41 42 Plan: 0 to add, 2 to change, 0 to destroy. 43 44 ───────────────────────────────────────────────────────────────────────────── 45 46 Saved the plan to: equivalence_test_plan 47 48 To perform exactly these actions, run the following command to apply: 49 terraform apply "equivalence_test_plan"