mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
b9d84f2944
This package is intended to contain all the functionality for parsing, representing, and formatting addresses of objects within Terraform. It will eventually subsume the responsibilities of both the InterpolatedVariable and ResourceAddress types in the "terraform" package, but for the moment is just a set of types for representing these things, lacking any way to parse or format them. The remaining functionality will follow in subsequent commits.
8 lines
117 B
Go
8 lines
117 B
Go
package addrs
|
|
|
|
// LocalValue is the address of a local value.
|
|
type LocalValue struct {
|
|
referenceable
|
|
Name string
|
|
}
|