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

     1  tfcoremock_simple_resource.json: Refreshing state... [id=5a3fd9b3-e852-8956-8c0a-255d47eda645]
     2  
     3  Terraform used the selected providers to generate the following execution
     4  plan. Resource actions are indicated with the following symbols:
     5    ~ update in-place
     6  
     7  Terraform will perform the following actions:
     8  
     9    # tfcoremock_simple_resource.json will be updated in-place
    10    ~ resource "tfcoremock_simple_resource" "json" {
    11          id     = "5a3fd9b3-e852-8956-8c0a-255d47eda645"
    12        ~ string = jsonencode(
    13            ~ {
    14                ~ list-attribute   = [
    15                      "one",
    16                    - "two",
    17                    + "four",
    18                      "three",
    19                  ]
    20                ~ object-attribute = {
    21                    + key_four  = "value_three"
    22                    ~ key_three = "value_three" -> "value_two"
    23                    - key_two   = "value_two"
    24                      # (1 unchanged attribute hidden)
    25                  }
    26                ~ string-attribute = "string" -> "a new string"
    27              }
    28          )
    29      }
    30  
    31  Plan: 0 to add, 1 to change, 0 to destroy.
    32  
    33  ─────────────────────────────────────────────────────────────────────────────
    34  
    35  Saved the plan to: equivalence_test_plan
    36  
    37  To perform exactly these actions, run the following command to apply:
    38      terraform apply "equivalence_test_plan"