mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
f39a5d0962
Our new state model has a different implementation of "empty" that doesn't consider lineage/serial, so we need to have some actual content in these state fixtures to avoid them being skipped during state migrations.
22 lines
414 B
JSON
22 lines
414 B
JSON
{
|
|
"version": 3,
|
|
"terraform_version": "0.8.2",
|
|
"serial": 8,
|
|
"lineage": "local",
|
|
"modules": [
|
|
{
|
|
"path": [
|
|
"root"
|
|
],
|
|
"outputs": {
|
|
"foo": {
|
|
"type": "string",
|
|
"value": "bar"
|
|
}
|
|
},
|
|
"resources": {},
|
|
"depends_on": []
|
|
}
|
|
]
|
|
}
|