Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ID ¶
type ID struct {
// contains filtered or unexported fields
}
ID represents a Terraform ID field. It is a mutually exclusive one-of type of either slug, e.g. "my-bucket", or local Terraform reference, e.g. "chronosphere_bucket.my_bucket.id".
The core Terraform resource providers should always use slugs. Use-cases which generate HCL (e.g. scenario tests and export config) may use local references.
type Ref ¶
type Ref struct { // True if the address is for a datasource and not a resource, i.e. should // there be a "data" prefix. Datasource bool // Resource type, required. E.g. chronosphere_bucket Type string // Resource id, required. E.g. "foo" for a chronosphere_bucket.foo address. ID string // Field name, optional, defaults to "id". E.g. "bar" for // chronosphere_bucket.things.bar Field string }
Ref contains metadata of a local reference.
Click to show internal directories.
Click to hide internal directories.