diff --git a/testing/equivalence-tests/outputs/null_provider_update/apply.json b/testing/equivalence-tests/outputs/null_provider_update/apply.json new file mode 100644 index 0000000000..42438bd2f7 --- /dev/null +++ b/testing/equivalence-tests/outputs/null_provider_update/apply.json @@ -0,0 +1,22 @@ +[ + { + "@level": "info", + "@message": "Apply complete! Resources: 0 added, 0 changed, 0 destroyed.", + "@module": "terraform.ui", + "changes": { + "add": 0, + "change": 0, + "import": 0, + "operation": "apply", + "remove": 0 + }, + "type": "change_summary" + }, + { + "@level": "info", + "@message": "Outputs: 0", + "@module": "terraform.ui", + "outputs": {}, + "type": "outputs" + } +] \ No newline at end of file diff --git a/testing/equivalence-tests/outputs/null_provider_update/plan b/testing/equivalence-tests/outputs/null_provider_update/plan new file mode 100644 index 0000000000..c2ee48084b --- /dev/null +++ b/testing/equivalence-tests/outputs/null_provider_update/plan @@ -0,0 +1,6 @@ +null_resource.null_resource: Refreshing state... [id=3637779521417605172] + +No changes. Your infrastructure matches the configuration. + +Terraform has compared your real infrastructure against your configuration +and found no differences, so no changes are needed. diff --git a/testing/equivalence-tests/outputs/null_provider_update/plan.json b/testing/equivalence-tests/outputs/null_provider_update/plan.json new file mode 100644 index 0000000000..ef949f810c --- /dev/null +++ b/testing/equivalence-tests/outputs/null_provider_update/plan.json @@ -0,0 +1,93 @@ +{ + "applyable": false, + "complete": true, + "configuration": { + "provider_config": { + "null": { + "full_name": "registry.terraform.io/hashicorp/null", + "name": "null", + "version_constraint": "3.1.1" + } + }, + "root_module": { + "resources": [ + { + "address": "null_resource.null_resource", + "mode": "managed", + "name": "null_resource", + "provider_config_key": "null", + "schema_version": 0, + "type": "null_resource" + } + ] + } + }, + "errored": false, + "format_version": "1.2", + "planned_values": { + "root_module": { + "resources": [ + { + "address": "null_resource.null_resource", + "mode": "managed", + "name": "null_resource", + "provider_name": "registry.terraform.io/hashicorp/null", + "schema_version": 0, + "sensitive_values": {}, + "type": "null_resource", + "values": { + "id": "3637779521417605172", + "triggers": null + } + } + ] + } + }, + "prior_state": { + "format_version": "1.0", + "values": { + "root_module": { + "resources": [ + { + "address": "null_resource.null_resource", + "mode": "managed", + "name": "null_resource", + "provider_name": "registry.terraform.io/hashicorp/null", + "schema_version": 0, + "sensitive_values": {}, + "type": "null_resource", + "values": { + "id": "3637779521417605172", + "triggers": null + } + } + ] + } + } + }, + "resource_changes": [ + { + "address": "null_resource.null_resource", + "change": { + "actions": [ + "no-op" + ], + "after": { + "id": "3637779521417605172", + "triggers": null + }, + "after_sensitive": {}, + "after_unknown": {}, + "before": { + "id": "3637779521417605172", + "triggers": null + }, + "before_sensitive": {} + }, + "mode": "managed", + "name": "null_resource", + "provider_name": "registry.terraform.io/hashicorp/null", + "type": "null_resource" + } + ] +} \ No newline at end of file diff --git a/testing/equivalence-tests/outputs/null_provider_update/state b/testing/equivalence-tests/outputs/null_provider_update/state new file mode 100644 index 0000000000..651823f4ed --- /dev/null +++ b/testing/equivalence-tests/outputs/null_provider_update/state @@ -0,0 +1,4 @@ +# null_resource.null_resource: +resource "null_resource" "null_resource" { + id = "3637779521417605172" +} diff --git a/testing/equivalence-tests/outputs/null_provider_update/state.json b/testing/equivalence-tests/outputs/null_provider_update/state.json new file mode 100644 index 0000000000..77ad52e453 --- /dev/null +++ b/testing/equivalence-tests/outputs/null_provider_update/state.json @@ -0,0 +1,22 @@ +{ + "format_version": "1.0", + "values": { + "root_module": { + "resources": [ + { + "address": "null_resource.null_resource", + "mode": "managed", + "name": "null_resource", + "provider_name": "registry.terraform.io/hashicorp/null", + "schema_version": 0, + "sensitive_values": {}, + "type": "null_resource", + "values": { + "id": "3637779521417605172", + "triggers": null + } + } + ] + } + } +} \ No newline at end of file