2014-06-18 03:40:32 +02:00
|
|
|
package diff
|
|
|
|
|
|
|
|
import (
|
2014-07-02 01:06:06 +02:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/flatmap"
|
2014-06-18 03:40:32 +02:00
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
)
|
|
|
|
|
2014-07-02 01:06:06 +02:00
|
|
|
// AttrType is an enum that tells the ResourceBuilder what type of attribute
|
|
|
|
// an attribute is, affecting the overall diff output.
|
|
|
|
//
|
|
|
|
// The valid values are:
|
|
|
|
//
|
|
|
|
// * AttrTypeCreate - This attribute can only be set or updated on create.
|
|
|
|
// This means that if this attribute is changed, it will require a new
|
|
|
|
// resource to be created if it is already created.
|
|
|
|
//
|
|
|
|
// * AttrTypeUpdate - This attribute can be set at create time or updated
|
|
|
|
// in-place. Changing this attribute does not require a new resource.
|
|
|
|
//
|
|
|
|
type AttrType byte
|
|
|
|
|
|
|
|
const (
|
|
|
|
AttrTypeUnknown AttrType = iota
|
|
|
|
AttrTypeCreate
|
|
|
|
AttrTypeUpdate
|
|
|
|
)
|
|
|
|
|
2014-06-24 19:33:03 +02:00
|
|
|
// ResourceBuilder is a helper that knows about how a single resource
|
2014-06-18 03:43:10 +02:00
|
|
|
// changes and how those changes affect the diff.
|
2014-06-18 03:40:32 +02:00
|
|
|
type ResourceBuilder struct {
|
2014-07-02 01:06:06 +02:00
|
|
|
// Attrs are the mapping of attributes that can be set from the
|
|
|
|
// configuration, and the affect they have. See the documentation for
|
|
|
|
// AttrType for more info.
|
|
|
|
Attrs map[string]AttrType
|
|
|
|
|
|
|
|
// ComputedAttrs are the attributes that are computed at
|
|
|
|
// resource creation time.
|
|
|
|
ComputedAttrs []string
|
2014-06-18 03:40:32 +02:00
|
|
|
}
|
|
|
|
|
2014-06-18 03:43:10 +02:00
|
|
|
// Diff returns the ResourceDiff for a resource given its state and
|
|
|
|
// configuration.
|
2014-06-18 03:40:32 +02:00
|
|
|
func (b *ResourceBuilder) Diff(
|
|
|
|
s *terraform.ResourceState,
|
|
|
|
c *terraform.ResourceConfig) (*terraform.ResourceDiff, error) {
|
|
|
|
attrs := make(map[string]*terraform.ResourceAttrDiff)
|
|
|
|
|
|
|
|
// We require a new resource if the ID is empty. Or, later, we set
|
|
|
|
// this to true if any configuration changed that triggers a new resource.
|
|
|
|
requiresNew := s.ID == ""
|
|
|
|
|
2014-07-02 01:06:06 +02:00
|
|
|
// Flatten the raw and processed configuration
|
|
|
|
flatRaw := flatmap.Flatten(c.Raw)
|
|
|
|
flatConfig := flatmap.Flatten(c.Config)
|
|
|
|
|
2014-07-09 18:47:21 +02:00
|
|
|
for ak, at := range b.Attrs {
|
|
|
|
// Keep track of all the keys we saw in the raw structure
|
|
|
|
// so that we can prune our attributes later.
|
|
|
|
seenKeys := make([]string, 0)
|
|
|
|
|
|
|
|
// Go through and find the added/changed keys in flatRaw
|
|
|
|
for k, v := range flatRaw {
|
|
|
|
// Find only the attributes that match our prefix
|
|
|
|
if !strings.HasPrefix(k, ak) {
|
|
|
|
continue
|
2014-07-02 01:06:06 +02:00
|
|
|
}
|
2014-06-20 21:12:53 +02:00
|
|
|
|
2014-07-09 18:47:21 +02:00
|
|
|
// Track that we saw this key
|
|
|
|
seenKeys = append(seenKeys, k)
|
|
|
|
|
|
|
|
// If this key is in the cleaned config, then use that value
|
|
|
|
// because it'll have its variables properly interpolated
|
|
|
|
if cleanV, ok := flatConfig[k]; ok {
|
|
|
|
v = cleanV
|
|
|
|
}
|
|
|
|
|
|
|
|
oldV, ok := s.Attributes[k]
|
|
|
|
|
|
|
|
// If there is an old value and they're the same, no change
|
|
|
|
if ok && oldV == v {
|
|
|
|
continue
|
|
|
|
}
|
2014-06-18 03:40:32 +02:00
|
|
|
|
2014-07-09 18:47:21 +02:00
|
|
|
// Record the change
|
|
|
|
attrs[k] = &terraform.ResourceAttrDiff{
|
|
|
|
Old: oldV,
|
|
|
|
New: v,
|
|
|
|
Type: terraform.DiffAttrInput,
|
|
|
|
}
|
2014-07-02 01:06:06 +02:00
|
|
|
|
2014-07-09 18:47:21 +02:00
|
|
|
// If this requires a new resource, record that and flag our
|
|
|
|
// boolean.
|
|
|
|
if at == AttrTypeCreate {
|
|
|
|
attrs[k].RequiresNew = true
|
|
|
|
requiresNew = true
|
|
|
|
}
|
2014-06-18 03:40:32 +02:00
|
|
|
}
|
|
|
|
|
2014-07-09 18:47:21 +02:00
|
|
|
// Go through our attribues and find the deleted keys
|
|
|
|
matchingKeys := make(map[string]struct{})
|
|
|
|
for k, _ := range s.Attributes {
|
|
|
|
// Find only the attributes that match our prefix
|
|
|
|
if !strings.HasPrefix(k, ak) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
matchingKeys[k] = struct{}{}
|
2014-06-18 03:40:32 +02:00
|
|
|
}
|
|
|
|
|
2014-07-09 18:47:21 +02:00
|
|
|
// Delete the keys we saw to find the deleted keys
|
|
|
|
for _, k := range seenKeys {
|
|
|
|
delete(matchingKeys, k)
|
|
|
|
}
|
|
|
|
for k, _ := range matchingKeys {
|
|
|
|
attrs[k] = &terraform.ResourceAttrDiff{
|
|
|
|
Old: s.Attributes[k],
|
|
|
|
New: "",
|
|
|
|
Type: terraform.DiffAttrInput,
|
|
|
|
}
|
2014-06-18 03:40:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we require a new resource, then process all the attributes
|
|
|
|
// that will be changing due to the creation of the resource.
|
|
|
|
if requiresNew {
|
2014-07-02 01:06:06 +02:00
|
|
|
for _, k := range b.ComputedAttrs {
|
2014-06-18 03:40:32 +02:00
|
|
|
old := s.Attributes[k]
|
|
|
|
attrs[k] = &terraform.ResourceAttrDiff{
|
|
|
|
Old: old,
|
|
|
|
NewComputed: true,
|
2014-06-23 21:49:30 +02:00
|
|
|
Type: terraform.DiffAttrOutput,
|
2014-06-18 03:40:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build our resulting diff if we had attributes change
|
|
|
|
var result *terraform.ResourceDiff
|
|
|
|
if len(attrs) > 0 {
|
|
|
|
result = &terraform.ResourceDiff{
|
|
|
|
Attributes: attrs,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|