github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/testing/equivalence-tests/outputs/data_read/plan (about) 1 2 Terraform used the selected providers to generate the following execution 3 plan. Resource actions are indicated with the following symbols: 4 + create 5 <= read (data resources) 6 7 Terraform will perform the following actions: 8 9 # data.tfcoremock_simple_resource.read will be read during apply 10 # (config refers to values not yet known) 11 <= data "tfcoremock_simple_resource" "read" { 12 + id = (known after apply) 13 } 14 15 # tfcoremock_simple_resource.create will be created 16 + resource "tfcoremock_simple_resource" "create" { 17 + id = (known after apply) 18 } 19 20 # module.create.local_file.data_file will be created 21 + resource "local_file" "data_file" { 22 + content = (known after apply) 23 + directory_permission = "0777" 24 + file_permission = "0777" 25 + filename = (known after apply) 26 + id = (known after apply) 27 } 28 29 # module.create.random_integer.random will be created 30 + resource "random_integer" "random" { 31 + id = (known after apply) 32 + max = 9999999 33 + min = 1000000 34 + result = (known after apply) 35 + seed = "F78CB410-BA01-44E1-82E1-37D61F7CB158" 36 } 37 38 Plan: 3 to add, 0 to change, 0 to destroy. 39 40 ───────────────────────────────────────────────────────────────────────────── 41 42 Saved the plan to: equivalence_test_plan 43 44 To perform exactly these actions, run the following command to apply: 45 terraform apply "equivalence_test_plan"