2018-03-31 04:58:57 +02:00
|
|
|
package addrs
|
|
|
|
|
2018-04-04 03:03:47 +02:00
|
|
|
import (
|
|
|
|
"fmt"
|
2018-04-30 19:06:05 +02:00
|
|
|
"strings"
|
2018-04-04 03:03:47 +02:00
|
|
|
)
|
|
|
|
|
2018-03-31 04:58:57 +02:00
|
|
|
// Resource is an address for a resource block within configuration, which
|
|
|
|
// contains potentially-multiple resource instances if that configuration
|
|
|
|
// block uses "count" or "for_each".
|
|
|
|
type Resource struct {
|
|
|
|
referenceable
|
|
|
|
Mode ResourceMode
|
|
|
|
Type string
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
2018-04-04 03:03:47 +02:00
|
|
|
func (r Resource) String() string {
|
|
|
|
switch r.Mode {
|
|
|
|
case ManagedResourceMode:
|
|
|
|
return fmt.Sprintf("%s.%s", r.Type, r.Name)
|
|
|
|
case DataResourceMode:
|
|
|
|
return fmt.Sprintf("data.%s.%s", r.Type, r.Name)
|
|
|
|
default:
|
2018-05-05 04:42:08 +02:00
|
|
|
// Should never happen, but we'll return a string here rather than
|
|
|
|
// crashing just in case it does.
|
|
|
|
return fmt.Sprintf("<invalid>.%s.%s", r.Type, r.Name)
|
2018-04-04 03:03:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-17 23:01:15 +02:00
|
|
|
func (r Resource) Equal(o Resource) bool {
|
|
|
|
return r.String() == o.String()
|
2018-09-07 02:17:13 +02:00
|
|
|
}
|
|
|
|
|
2018-03-31 04:58:57 +02:00
|
|
|
// Instance produces the address for a specific instance of the receiver
|
|
|
|
// that is idenfied by the given key.
|
|
|
|
func (r Resource) Instance(key InstanceKey) ResourceInstance {
|
|
|
|
return ResourceInstance{
|
|
|
|
Resource: r,
|
|
|
|
Key: key,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Absolute returns an AbsResource from the receiver and the given module
|
|
|
|
// instance address.
|
|
|
|
func (r Resource) Absolute(module ModuleInstance) AbsResource {
|
|
|
|
return AbsResource{
|
|
|
|
Module: module,
|
|
|
|
Resource: r,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Initial steps towards AbsProviderConfig/LocalProviderConfig separation (#23978)
* Introduce "Local" terminology for non-absolute provider config addresses
In a future change AbsProviderConfig and LocalProviderConfig are going to
become two entirely distinct types, rather than Abs embedding Local as
written here. This naming change is in preparation for that subsequent
work, which will also include introducing a new "ProviderConfig" type
that is an interface that AbsProviderConfig and LocalProviderConfig both
implement.
This is intended to be largely just a naming change to get started, so
we can deal with all of the messy renaming. However, this did also require
a slight change in modeling where the Resource.DefaultProviderConfig
method has become Resource.DefaultProvider returning a Provider address
directly, because this method doesn't have enough information to construct
a true and accurate LocalProviderConfig -- it would need to refer to the
configuration to know what this module is calling the provider it has
selected.
In order to leave a trail to follow for subsequent work, all of the
changes here are intended to ensure that remaining work will become
obvious via compile-time errors when all of the following changes happen:
- The concept of "legacy" provider addresses is removed from the addrs
package, including removing addrs.NewLegacyProvider and
addrs.Provider.LegacyString.
- addrs.AbsProviderConfig stops having addrs.LocalProviderConfig embedded
in it and has an addrs.Provider and a string alias directly instead.
- The provider-schema-handling parts of Terraform core are updated to
work with addrs.Provider to identify providers, rather than legacy
strings.
In particular, there are still several codepaths here making legacy
provider address assumptions (in order to limit the scope of this change)
but I've made sure each one is doing something that relies on at least
one of the above changes not having been made yet.
* addrs: ProviderConfig interface
In a (very) few special situations in the main "terraform" package we need
to make runtime decisions about whether a provider config is absolute
or local.
We currently do that by exploiting the fact that AbsProviderConfig has
LocalProviderConfig nested inside of it and so in the local case we can
just ignore the wrapping AbsProviderConfig and use the embedded value.
In a future change we'll be moving away from that embedding and making
these two types distinct in order to represent that mapping between them
requires consulting a lookup table in the configuration, and so here we
introduce a new interface type ProviderConfig that can represent either
AbsProviderConfig or LocalProviderConfig decided dynamically at runtime.
This also includes the Config.ResolveAbsProviderAddr method that will
eventually be responsible for that local-to-absolute translation, so
that callers with access to the configuration can normalize to an
addrs.AbsProviderConfig given a non-nil addrs.ProviderConfig. That's
currently unused because existing callers are still relying on the
simplistic structural transform, but we'll switch them over in a later
commit.
* rename LocalType to LocalName
Co-authored-by: Kristin Laemmert <mildwonkey@users.noreply.github.com>
2020-01-31 14:23:07 +01:00
|
|
|
// DefaultProvider returns the address of the provider whose default
|
|
|
|
// configuration shouldbe used for the resource identified by the reciever if
|
|
|
|
// it does not have a provider configuration address explicitly set in
|
2018-04-30 19:06:05 +02:00
|
|
|
// configuration.
|
|
|
|
//
|
|
|
|
// This method is not able to verify that such a configuration exists, nor
|
|
|
|
// represent the behavior of automatically inheriting certain provider
|
|
|
|
// configurations from parent modules. It just does a static analysis of the
|
|
|
|
// receiving address and returns an address to start from, relative to the
|
|
|
|
// same module that contains the resource.
|
Initial steps towards AbsProviderConfig/LocalProviderConfig separation (#23978)
* Introduce "Local" terminology for non-absolute provider config addresses
In a future change AbsProviderConfig and LocalProviderConfig are going to
become two entirely distinct types, rather than Abs embedding Local as
written here. This naming change is in preparation for that subsequent
work, which will also include introducing a new "ProviderConfig" type
that is an interface that AbsProviderConfig and LocalProviderConfig both
implement.
This is intended to be largely just a naming change to get started, so
we can deal with all of the messy renaming. However, this did also require
a slight change in modeling where the Resource.DefaultProviderConfig
method has become Resource.DefaultProvider returning a Provider address
directly, because this method doesn't have enough information to construct
a true and accurate LocalProviderConfig -- it would need to refer to the
configuration to know what this module is calling the provider it has
selected.
In order to leave a trail to follow for subsequent work, all of the
changes here are intended to ensure that remaining work will become
obvious via compile-time errors when all of the following changes happen:
- The concept of "legacy" provider addresses is removed from the addrs
package, including removing addrs.NewLegacyProvider and
addrs.Provider.LegacyString.
- addrs.AbsProviderConfig stops having addrs.LocalProviderConfig embedded
in it and has an addrs.Provider and a string alias directly instead.
- The provider-schema-handling parts of Terraform core are updated to
work with addrs.Provider to identify providers, rather than legacy
strings.
In particular, there are still several codepaths here making legacy
provider address assumptions (in order to limit the scope of this change)
but I've made sure each one is doing something that relies on at least
one of the above changes not having been made yet.
* addrs: ProviderConfig interface
In a (very) few special situations in the main "terraform" package we need
to make runtime decisions about whether a provider config is absolute
or local.
We currently do that by exploiting the fact that AbsProviderConfig has
LocalProviderConfig nested inside of it and so in the local case we can
just ignore the wrapping AbsProviderConfig and use the embedded value.
In a future change we'll be moving away from that embedding and making
these two types distinct in order to represent that mapping between them
requires consulting a lookup table in the configuration, and so here we
introduce a new interface type ProviderConfig that can represent either
AbsProviderConfig or LocalProviderConfig decided dynamically at runtime.
This also includes the Config.ResolveAbsProviderAddr method that will
eventually be responsible for that local-to-absolute translation, so
that callers with access to the configuration can normalize to an
addrs.AbsProviderConfig given a non-nil addrs.ProviderConfig. That's
currently unused because existing callers are still relying on the
simplistic structural transform, but we'll switch them over in a later
commit.
* rename LocalType to LocalName
Co-authored-by: Kristin Laemmert <mildwonkey@users.noreply.github.com>
2020-01-31 14:23:07 +01:00
|
|
|
func (r Resource) DefaultProvider() Provider {
|
2018-04-30 19:06:05 +02:00
|
|
|
typeName := r.Type
|
|
|
|
if under := strings.Index(typeName, "_"); under != -1 {
|
|
|
|
typeName = typeName[:under]
|
|
|
|
}
|
2019-12-06 14:00:18 +01:00
|
|
|
|
Initial steps towards AbsProviderConfig/LocalProviderConfig separation (#23978)
* Introduce "Local" terminology for non-absolute provider config addresses
In a future change AbsProviderConfig and LocalProviderConfig are going to
become two entirely distinct types, rather than Abs embedding Local as
written here. This naming change is in preparation for that subsequent
work, which will also include introducing a new "ProviderConfig" type
that is an interface that AbsProviderConfig and LocalProviderConfig both
implement.
This is intended to be largely just a naming change to get started, so
we can deal with all of the messy renaming. However, this did also require
a slight change in modeling where the Resource.DefaultProviderConfig
method has become Resource.DefaultProvider returning a Provider address
directly, because this method doesn't have enough information to construct
a true and accurate LocalProviderConfig -- it would need to refer to the
configuration to know what this module is calling the provider it has
selected.
In order to leave a trail to follow for subsequent work, all of the
changes here are intended to ensure that remaining work will become
obvious via compile-time errors when all of the following changes happen:
- The concept of "legacy" provider addresses is removed from the addrs
package, including removing addrs.NewLegacyProvider and
addrs.Provider.LegacyString.
- addrs.AbsProviderConfig stops having addrs.LocalProviderConfig embedded
in it and has an addrs.Provider and a string alias directly instead.
- The provider-schema-handling parts of Terraform core are updated to
work with addrs.Provider to identify providers, rather than legacy
strings.
In particular, there are still several codepaths here making legacy
provider address assumptions (in order to limit the scope of this change)
but I've made sure each one is doing something that relies on at least
one of the above changes not having been made yet.
* addrs: ProviderConfig interface
In a (very) few special situations in the main "terraform" package we need
to make runtime decisions about whether a provider config is absolute
or local.
We currently do that by exploiting the fact that AbsProviderConfig has
LocalProviderConfig nested inside of it and so in the local case we can
just ignore the wrapping AbsProviderConfig and use the embedded value.
In a future change we'll be moving away from that embedding and making
these two types distinct in order to represent that mapping between them
requires consulting a lookup table in the configuration, and so here we
introduce a new interface type ProviderConfig that can represent either
AbsProviderConfig or LocalProviderConfig decided dynamically at runtime.
This also includes the Config.ResolveAbsProviderAddr method that will
eventually be responsible for that local-to-absolute translation, so
that callers with access to the configuration can normalize to an
addrs.AbsProviderConfig given a non-nil addrs.ProviderConfig. That's
currently unused because existing callers are still relying on the
simplistic structural transform, but we'll switch them over in a later
commit.
* rename LocalType to LocalName
Co-authored-by: Kristin Laemmert <mildwonkey@users.noreply.github.com>
2020-01-31 14:23:07 +01:00
|
|
|
// TODO: For now we're returning a _legacy_ provider address here
|
|
|
|
// because the rest of Terraform isn't yet prepared to deal with
|
|
|
|
// non-legacy ones. Once we phase out legacy addresses this should
|
|
|
|
// switch to being a _default_ provider address, i.e. one in the
|
|
|
|
// releases.hashicorp.com/hashicorp/... namespace.
|
|
|
|
return NewLegacyProvider(typeName)
|
2018-04-30 19:06:05 +02:00
|
|
|
}
|
|
|
|
|
2018-03-31 04:58:57 +02:00
|
|
|
// ResourceInstance is an address for a specific instance of a resource.
|
|
|
|
// When a resource is defined in configuration with "count" or "for_each" it
|
|
|
|
// produces zero or more instances, which can be addressed using this type.
|
|
|
|
type ResourceInstance struct {
|
|
|
|
referenceable
|
|
|
|
Resource Resource
|
|
|
|
Key InstanceKey
|
|
|
|
}
|
|
|
|
|
2018-04-30 19:06:05 +02:00
|
|
|
func (r ResourceInstance) ContainingResource() Resource {
|
|
|
|
return r.Resource
|
|
|
|
}
|
|
|
|
|
2018-04-04 03:03:47 +02:00
|
|
|
func (r ResourceInstance) String() string {
|
|
|
|
if r.Key == NoKey {
|
|
|
|
return r.Resource.String()
|
|
|
|
}
|
|
|
|
return r.Resource.String() + r.Key.String()
|
|
|
|
}
|
|
|
|
|
2018-10-17 23:01:15 +02:00
|
|
|
func (r ResourceInstance) Equal(o ResourceInstance) bool {
|
|
|
|
return r.String() == o.String()
|
2018-09-07 02:17:13 +02:00
|
|
|
}
|
|
|
|
|
2018-03-31 04:58:57 +02:00
|
|
|
// Absolute returns an AbsResourceInstance from the receiver and the given module
|
|
|
|
// instance address.
|
|
|
|
func (r ResourceInstance) Absolute(module ModuleInstance) AbsResourceInstance {
|
|
|
|
return AbsResourceInstance{
|
|
|
|
Module: module,
|
|
|
|
Resource: r,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-24 01:56:16 +02:00
|
|
|
// AbsResource is an absolute address for a resource under a given module path.
|
|
|
|
type AbsResource struct {
|
2018-04-30 19:06:05 +02:00
|
|
|
targetable
|
2018-04-24 01:56:16 +02:00
|
|
|
Module ModuleInstance
|
|
|
|
Resource Resource
|
|
|
|
}
|
|
|
|
|
2018-03-31 04:58:57 +02:00
|
|
|
// Resource returns the address of a particular resource within the receiver.
|
|
|
|
func (m ModuleInstance) Resource(mode ResourceMode, typeName string, name string) AbsResource {
|
|
|
|
return AbsResource{
|
|
|
|
Module: m,
|
|
|
|
Resource: Resource{
|
|
|
|
Mode: mode,
|
|
|
|
Type: typeName,
|
|
|
|
Name: name,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-30 19:06:05 +02:00
|
|
|
// Instance produces the address for a specific instance of the receiver
|
|
|
|
// that is idenfied by the given key.
|
|
|
|
func (r AbsResource) Instance(key InstanceKey) AbsResourceInstance {
|
|
|
|
return AbsResourceInstance{
|
|
|
|
Module: r.Module,
|
|
|
|
Resource: r.Resource.Instance(key),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TargetContains implements Targetable by returning true if the given other
|
|
|
|
// address is either equal to the receiver or is an instance of the
|
|
|
|
// receiver.
|
|
|
|
func (r AbsResource) TargetContains(other Targetable) bool {
|
|
|
|
switch to := other.(type) {
|
|
|
|
|
|
|
|
case AbsResource:
|
|
|
|
// We'll use our stringification as a cheat-ish way to test for equality.
|
|
|
|
return to.String() == r.String()
|
|
|
|
|
|
|
|
case AbsResourceInstance:
|
|
|
|
return r.TargetContains(to.ContainingResource())
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-24 01:56:16 +02:00
|
|
|
func (r AbsResource) String() string {
|
|
|
|
if len(r.Module) == 0 {
|
|
|
|
return r.Resource.String()
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%s.%s", r.Module.String(), r.Resource.String())
|
2018-03-31 04:58:57 +02:00
|
|
|
}
|
|
|
|
|
2018-10-17 23:01:15 +02:00
|
|
|
func (r AbsResource) Equal(o AbsResource) bool {
|
|
|
|
return r.String() == o.String()
|
2018-09-07 02:17:13 +02:00
|
|
|
}
|
|
|
|
|
2018-03-31 04:58:57 +02:00
|
|
|
// AbsResourceInstance is an absolute address for a resource instance under a
|
|
|
|
// given module path.
|
|
|
|
type AbsResourceInstance struct {
|
2018-04-30 19:06:05 +02:00
|
|
|
targetable
|
2018-03-31 04:58:57 +02:00
|
|
|
Module ModuleInstance
|
|
|
|
Resource ResourceInstance
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResourceInstance returns the address of a particular resource instance within the receiver.
|
|
|
|
func (m ModuleInstance) ResourceInstance(mode ResourceMode, typeName string, name string, key InstanceKey) AbsResourceInstance {
|
|
|
|
return AbsResourceInstance{
|
|
|
|
Module: m,
|
|
|
|
Resource: ResourceInstance{
|
|
|
|
Resource: Resource{
|
|
|
|
Mode: mode,
|
|
|
|
Type: typeName,
|
|
|
|
Name: name,
|
|
|
|
},
|
|
|
|
Key: key,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-30 19:06:05 +02:00
|
|
|
// ContainingResource returns the address of the resource that contains the
|
|
|
|
// receving resource instance. In other words, it discards the key portion
|
|
|
|
// of the address to produce an AbsResource value.
|
|
|
|
func (r AbsResourceInstance) ContainingResource() AbsResource {
|
|
|
|
return AbsResource{
|
|
|
|
Module: r.Module,
|
|
|
|
Resource: r.Resource.ContainingResource(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TargetContains implements Targetable by returning true if the given other
|
|
|
|
// address is equal to the receiver.
|
|
|
|
func (r AbsResourceInstance) TargetContains(other Targetable) bool {
|
|
|
|
switch to := other.(type) {
|
|
|
|
|
|
|
|
case AbsResourceInstance:
|
|
|
|
// We'll use our stringification as a cheat-ish way to test for equality.
|
|
|
|
return to.String() == r.String()
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-24 01:56:16 +02:00
|
|
|
func (r AbsResourceInstance) String() string {
|
|
|
|
if len(r.Module) == 0 {
|
|
|
|
return r.Resource.String()
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%s.%s", r.Module.String(), r.Resource.String())
|
|
|
|
}
|
|
|
|
|
2018-10-17 23:01:15 +02:00
|
|
|
func (r AbsResourceInstance) Equal(o AbsResourceInstance) bool {
|
|
|
|
return r.String() == o.String()
|
2018-09-07 02:17:13 +02:00
|
|
|
}
|
|
|
|
|
2018-06-08 02:17:47 +02:00
|
|
|
// Less returns true if the receiver should sort before the given other value
|
|
|
|
// in a sorted list of addresses.
|
|
|
|
func (r AbsResourceInstance) Less(o AbsResourceInstance) bool {
|
|
|
|
switch {
|
|
|
|
|
|
|
|
case len(r.Module) != len(o.Module):
|
|
|
|
return len(r.Module) < len(o.Module)
|
|
|
|
|
|
|
|
case r.Module.String() != o.Module.String():
|
|
|
|
return r.Module.Less(o.Module)
|
|
|
|
|
|
|
|
case r.Resource.Resource.Mode != o.Resource.Resource.Mode:
|
|
|
|
return r.Resource.Resource.Mode == DataResourceMode
|
|
|
|
|
|
|
|
case r.Resource.Resource.Type != o.Resource.Resource.Type:
|
|
|
|
return r.Resource.Resource.Type < o.Resource.Resource.Type
|
|
|
|
|
|
|
|
case r.Resource.Resource.Name != o.Resource.Resource.Name:
|
|
|
|
return r.Resource.Resource.Name < o.Resource.Resource.Name
|
|
|
|
|
|
|
|
case r.Resource.Key != o.Resource.Key:
|
|
|
|
return InstanceKeyLess(r.Resource.Key, o.Resource.Key)
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-31 04:58:57 +02:00
|
|
|
// ResourceMode defines which lifecycle applies to a given resource. Each
|
|
|
|
// resource lifecycle has a slightly different address format.
|
|
|
|
type ResourceMode rune
|
|
|
|
|
2019-10-17 22:17:23 +02:00
|
|
|
//go:generate go run golang.org/x/tools/cmd/stringer -type ResourceMode
|
2018-03-31 04:58:57 +02:00
|
|
|
|
|
|
|
const (
|
|
|
|
// InvalidResourceMode is the zero value of ResourceMode and is not
|
|
|
|
// a valid resource mode.
|
|
|
|
InvalidResourceMode ResourceMode = 0
|
|
|
|
|
|
|
|
// ManagedResourceMode indicates a managed resource, as defined by
|
|
|
|
// "resource" blocks in configuration.
|
|
|
|
ManagedResourceMode ResourceMode = 'M'
|
|
|
|
|
|
|
|
// DataResourceMode indicates a data resource, as defined by
|
|
|
|
// "data" blocks in configuration.
|
|
|
|
DataResourceMode ResourceMode = 'D'
|
|
|
|
)
|