terraform: instance => resource
This commit is contained in:
parent
e497c26517
commit
4d268b6eca
|
@ -159,6 +159,15 @@ func stateAddFunc_Instance_Instance(s *State, fromAddr, addr *ResourceAddress, r
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func stateAddFunc_Instance_Resource(
|
||||||
|
s *State, from, to *ResourceAddress, raw interface{}) error {
|
||||||
|
addr := *to
|
||||||
|
addr.InstanceType = TypePrimary
|
||||||
|
addr.InstanceTypeSet = true
|
||||||
|
|
||||||
|
return s.Add(from.String(), addr.String(), raw)
|
||||||
|
}
|
||||||
|
|
||||||
// stateAddFunc is the type of function for adding an item to a state
|
// stateAddFunc is the type of function for adding an item to a state
|
||||||
type stateAddFunc func(s *State, from, to *ResourceAddress, item interface{}) error
|
type stateAddFunc func(s *State, from, to *ResourceAddress, item interface{}) error
|
||||||
|
|
||||||
|
@ -176,6 +185,7 @@ func init() {
|
||||||
},
|
},
|
||||||
stateAddInstance: {
|
stateAddInstance: {
|
||||||
stateAddInstance: stateAddFunc_Instance_Instance,
|
stateAddInstance: stateAddFunc_Instance_Instance,
|
||||||
|
stateAddResource: stateAddFunc_Instance_Resource,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -263,7 +263,7 @@ func TestStateAdd(t *testing.T) {
|
||||||
nil,
|
nil,
|
||||||
},
|
},
|
||||||
|
|
||||||
"ResourceState => Module (existing)": {
|
"ResourceState => Module (new)": {
|
||||||
false,
|
false,
|
||||||
"aws_instance.bar",
|
"aws_instance.bar",
|
||||||
"module.foo",
|
"module.foo",
|
||||||
|
@ -291,6 +291,32 @@ func TestStateAdd(t *testing.T) {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"InstanceState => Resource (new)": {
|
||||||
|
false,
|
||||||
|
"aws_instance.bar.primary",
|
||||||
|
"aws_instance.baz",
|
||||||
|
&InstanceState{
|
||||||
|
ID: "foo",
|
||||||
|
},
|
||||||
|
|
||||||
|
&State{},
|
||||||
|
&State{
|
||||||
|
Modules: []*ModuleState{
|
||||||
|
&ModuleState{
|
||||||
|
Path: []string{"root"},
|
||||||
|
Resources: map[string]*ResourceState{
|
||||||
|
"aws_instance.baz": &ResourceState{
|
||||||
|
Type: "aws_instance",
|
||||||
|
Primary: &InstanceState{
|
||||||
|
ID: "foo",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for k, tc := range cases {
|
for k, tc := range cases {
|
||||||
|
|
Loading…
Reference in New Issue