2018-06-08 02:27:57 +02:00
|
|
|
package states
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/zclconf/go-cty/cty"
|
2018-07-21 02:15:29 +02:00
|
|
|
ctyjson "github.com/zclconf/go-cty/cty/json"
|
2018-06-08 02:27:57 +02:00
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/addrs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ResourceInstanceObject is the local representation of a specific remote
|
|
|
|
// object associated with a resource instance. In practice not all remote
|
|
|
|
// objects are actually remote in the sense of being accessed over the network,
|
|
|
|
// but this is the most common case.
|
|
|
|
//
|
|
|
|
// It is not valid to mutate a ResourceInstanceObject once it has been created.
|
|
|
|
// Instead, create a new object and replace the existing one.
|
|
|
|
type ResourceInstanceObject struct {
|
2018-07-21 02:15:29 +02:00
|
|
|
// Value is the object-typed value representing the remote object within
|
|
|
|
// Terraform.
|
|
|
|
Value cty.Value
|
2018-06-08 02:27:57 +02:00
|
|
|
|
|
|
|
// Internal is an opaque value set by the provider when this object was
|
|
|
|
// last created or updated. Terraform Core does not use this value in
|
|
|
|
// any way and it is not exposed anywhere in the user interface, so
|
|
|
|
// a provider can use it for retaining any necessary private state.
|
|
|
|
Private cty.Value
|
|
|
|
|
|
|
|
// Status represents the "readiness" of the object as of the last time
|
|
|
|
// it was updated.
|
|
|
|
Status ObjectStatus
|
|
|
|
|
|
|
|
// Dependencies is a set of other addresses in the same module which
|
|
|
|
// this instance depended on when the given attributes were evaluated.
|
|
|
|
// This is used to construct the dependency relationships for an object
|
|
|
|
// whose configuration is no longer available, such as if it has been
|
|
|
|
// removed from configuration altogether, or is now deposed.
|
|
|
|
Dependencies []addrs.Referenceable
|
|
|
|
}
|
|
|
|
|
|
|
|
// ObjectStatus represents the status of a RemoteObject.
|
|
|
|
type ObjectStatus rune
|
|
|
|
|
|
|
|
//go:generate stringer -type ObjectStatus
|
|
|
|
|
|
|
|
const (
|
|
|
|
// ObjectReady is an object status for an object that is ready to use.
|
|
|
|
ObjectReady ObjectStatus = 'R'
|
|
|
|
|
|
|
|
// ObjectTainted is an object status representing an object that is in
|
|
|
|
// an unrecoverable bad state due to a partial failure during a create,
|
|
|
|
// update, or delete operation. Since it cannot be moved into the
|
|
|
|
// ObjectRead state, a tainted object must be replaced.
|
|
|
|
ObjectTainted ObjectStatus = 'T'
|
|
|
|
)
|
2018-07-21 02:15:29 +02:00
|
|
|
|
|
|
|
// Encode marshals the value within the receiver to produce a
|
|
|
|
// ResourceInstanceObjectSrc ready to be written to a state file.
|
|
|
|
//
|
|
|
|
// The given type must be the implied type of the resource type schema, and
|
|
|
|
// the given value must conform to it. It is important to pass the schema
|
|
|
|
// type and not the object's own type so that dynamically-typed attributes
|
|
|
|
// will be stored correctly. The caller must also provide the version number
|
|
|
|
// of the schema that the given type was derived from, which will be recorded
|
|
|
|
// in the source object so it can be used to detect when schema migration is
|
|
|
|
// required on read.
|
|
|
|
//
|
|
|
|
// The returned object may share internal references with the receiver and
|
|
|
|
// so the caller must not mutate the receiver any further once once this
|
|
|
|
// method is called.
|
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 23:24:45 +02:00
|
|
|
func (o *ResourceInstanceObject) Encode(ty cty.Type, schemaVersion uint64) (*ResourceInstanceObjectSrc, error) {
|
|
|
|
src, err := ctyjson.Marshal(o.Value, ty)
|
2018-07-21 02:15:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &ResourceInstanceObjectSrc{
|
|
|
|
SchemaVersion: schemaVersion,
|
|
|
|
AttrsJSON: src,
|
|
|
|
Private: o.Private,
|
|
|
|
Status: o.Status,
|
|
|
|
Dependencies: o.Dependencies,
|
|
|
|
}, nil
|
|
|
|
}
|