github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/testing/equivalence-tests/outputs/moved_with_drift/plan (about)

     1  tfcoremock_simple_resource.base_after: Refreshing state... [id=e450ef2f-b80f-0cce-8bdb-14d88f48649c]
     2  tfcoremock_simple_resource.dependent: Refreshing state... [id=2ecc718c-8d04-5774-5c36-7d69bf77d34e]
     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_after has changed
    10    # (moved from tfcoremock_simple_resource.base_before)
    11    ~ resource "tfcoremock_simple_resource" "base_after" {
    12          id     = "e450ef2f-b80f-0cce-8bdb-14d88f48649c"
    13        ~ string = "Hello, world!" -> "Hello, drift!"
    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_after will be updated in-place
    30    # (moved from tfcoremock_simple_resource.base_before)
    31    ~ resource "tfcoremock_simple_resource" "base_after" {
    32          id     = "e450ef2f-b80f-0cce-8bdb-14d88f48649c"
    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     = "2ecc718c-8d04-5774-5c36-7d69bf77d34e"
    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"