mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-02 12:17:39 -06:00
a2eb462f5d
The new format is radically different in than the old in physical structure, but still has the same logical parts: the plan itself, a snapshot of the input configuration, and a snapshot of the state as it existed when the plan was created. Rather than creating plan-specific serializations of state and config, the new format instead leans on the existing file formats implemented elsewhere, wrapping the result up in a zip archive with some internal file naming conventions. The plan portion of the file is serialized with protobuf, consistent with our general strategy of replacing all use of encoding/gob with protobuf moving forward.
7 lines
271 B
Go
7 lines
271 B
Go
// Package planfile deals with the file format used to serialize plans to disk
|
|
// and then deserialize them back into memory later.
|
|
//
|
|
// A plan file contains the planned changes along with the configuration and
|
|
// state snapshot that they are based on.
|
|
package planfile
|