2016-04-26 12:47:56 -05:00
|
|
|
package terraform
|
|
|
|
|
|
|
|
import (
|
2016-05-10 11:15:19 -05:00
|
|
|
"fmt"
|
2016-04-26 12:47:56 -05:00
|
|
|
"strings"
|
|
|
|
"testing"
|
2018-05-04 21:24:06 -05:00
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/addrs"
|
2018-07-05 12:33:29 -05:00
|
|
|
"github.com/hashicorp/terraform/configs/configschema"
|
2018-08-17 14:32:35 -05:00
|
|
|
"github.com/hashicorp/terraform/providers"
|
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 16:24:45 -05:00
|
|
|
"github.com/hashicorp/terraform/states"
|
2018-05-04 21:24:06 -05:00
|
|
|
"github.com/zclconf/go-cty/cty"
|
2016-04-26 12:47:56 -05:00
|
|
|
)
|
|
|
|
|
2016-04-28 12:25:58 -05:00
|
|
|
func TestContextImport_basic(t *testing.T) {
|
2016-04-26 12:47:56 -05:00
|
|
|
p := testProvider("aws")
|
2017-04-21 19:19:37 -05:00
|
|
|
m := testModule(t, "import-provider")
|
2016-04-26 12:47:56 -05:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-04 21:24:06 -05:00
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2016-04-26 12:47:56 -05:00
|
|
|
})
|
|
|
|
|
2016-04-28 12:25:58 -05:00
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
state, diags := ctx.Import(&ImportOpts{
|
2016-04-28 04:46:46 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2018-05-04 21:24:06 -05:00
|
|
|
Addr: addrs.RootModuleInstance.ResourceInstance(
|
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2018-12-04 14:39:46 -06:00
|
|
|
ID: "bar",
|
2016-04-28 04:46:46 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if diags.HasErrors() {
|
|
|
|
t.Fatalf("unexpected errors: %s", diags.Err())
|
2016-04-26 12:47:56 -05:00
|
|
|
}
|
|
|
|
actual := strings.TrimSpace(state.String())
|
2016-04-28 04:46:46 -05:00
|
|
|
expected := strings.TrimSpace(testImportStr)
|
2016-04-26 12:47:56 -05:00
|
|
|
if actual != expected {
|
|
|
|
t.Fatalf("bad: \n%s", actual)
|
|
|
|
}
|
|
|
|
}
|
2016-04-28 04:46:46 -05:00
|
|
|
|
2016-08-19 18:14:33 -05:00
|
|
|
func TestContextImport_countIndex(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2017-04-21 19:19:37 -05:00
|
|
|
m := testModule(t, "import-provider")
|
2016-08-19 18:14:33 -05:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-04 21:24:06 -05:00
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2016-08-19 18:14:33 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
state, diags := ctx.Import(&ImportOpts{
|
2016-08-19 18:14:33 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2018-05-04 21:24:06 -05:00
|
|
|
Addr: addrs.RootModuleInstance.ResourceInstance(
|
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.IntKey(0),
|
|
|
|
),
|
2018-12-04 14:39:46 -06:00
|
|
|
ID: "bar",
|
2016-08-19 18:14:33 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if diags.HasErrors() {
|
|
|
|
t.Fatalf("unexpected errors: %s", diags.Err())
|
2016-08-19 18:14:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
actual := strings.TrimSpace(state.String())
|
|
|
|
expected := strings.TrimSpace(testImportCountIndexStr)
|
|
|
|
if actual != expected {
|
|
|
|
t.Fatalf("bad: \n%s", actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-30 17:53:48 -05:00
|
|
|
func TestContextImport_collision(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2017-04-21 19:19:37 -05:00
|
|
|
m := testModule(t, "import-provider")
|
2016-04-30 17:53:48 -05:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-04 21:24:06 -05:00
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2016-04-30 17:53:48 -05:00
|
|
|
|
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 16:24:45 -05:00
|
|
|
State: states.BuildState(func(s *states.SyncState) {
|
|
|
|
s.SetResourceInstanceCurrent(
|
|
|
|
addrs.Resource{
|
|
|
|
Mode: addrs.ManagedResourceMode,
|
|
|
|
Type: "aws_instance",
|
|
|
|
Name: "foo",
|
|
|
|
}.Instance(addrs.NoKey).Absolute(addrs.RootModuleInstance),
|
|
|
|
&states.ResourceInstanceObjectSrc{
|
|
|
|
AttrsFlat: map[string]string{
|
|
|
|
"id": "bar",
|
2016-04-30 17:53:48 -05:00
|
|
|
},
|
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 16:24:45 -05:00
|
|
|
Status: states.ObjectReady,
|
2016-04-30 17:53:48 -05:00
|
|
|
},
|
2020-02-13 14:32:58 -06:00
|
|
|
addrs.AbsProviderConfig{
|
2020-03-31 13:03:33 -05:00
|
|
|
Provider: addrs.NewDefaultProvider("aws"),
|
2020-03-10 20:21:19 -05:00
|
|
|
Module: addrs.RootModule,
|
2020-02-13 14:32:58 -06:00
|
|
|
},
|
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 16:24:45 -05:00
|
|
|
)
|
|
|
|
}),
|
2016-04-30 17:53:48 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
state, diags := ctx.Import(&ImportOpts{
|
2016-04-30 17:53:48 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2018-05-04 21:24:06 -05:00
|
|
|
Addr: addrs.RootModuleInstance.ResourceInstance(
|
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2018-12-04 14:39:46 -06:00
|
|
|
ID: "bar",
|
2016-04-30 17:53:48 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:17:59 -05:00
|
|
|
if !diags.HasErrors() {
|
|
|
|
t.Fatalf("succeeded; want an error indicating that the resource already exists in state")
|
2016-04-30 17:53:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
actual := strings.TrimSpace(state.String())
|
2018-09-20 17:22:42 -05:00
|
|
|
expected := `aws_instance.foo:
|
|
|
|
ID = bar
|
2020-03-31 13:03:33 -05:00
|
|
|
provider = provider["registry.terraform.io/hashicorp/aws"]`
|
2018-09-20 17:22:42 -05:00
|
|
|
|
2016-04-30 17:53:48 -05:00
|
|
|
if actual != expected {
|
|
|
|
t.Fatalf("bad: \n%s", actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-30 16:55:26 -05:00
|
|
|
func TestContextImport_missingType(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2017-04-21 19:19:37 -05:00
|
|
|
m := testModule(t, "import-provider")
|
2018-09-20 17:22:42 -05:00
|
|
|
|
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-04-30 16:55:26 -05:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-04 21:24:06 -05:00
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2016-04-30 16:55:26 -05:00
|
|
|
})
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
state, diags := ctx.Import(&ImportOpts{
|
2016-04-30 16:55:26 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2018-05-04 21:24:06 -05:00
|
|
|
Addr: addrs.RootModuleInstance.ResourceInstance(
|
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2018-12-04 14:39:46 -06:00
|
|
|
ID: "bar",
|
2016-04-30 16:55:26 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if !diags.HasErrors() {
|
2016-04-30 16:55:26 -05:00
|
|
|
t.Fatal("should error")
|
|
|
|
}
|
2016-04-30 16:56:22 -05:00
|
|
|
|
|
|
|
actual := strings.TrimSpace(state.String())
|
2016-04-30 17:53:48 -05:00
|
|
|
expected := "<no state>"
|
2016-04-30 16:56:22 -05:00
|
|
|
if actual != expected {
|
|
|
|
t.Fatalf("bad: \n%s", actual)
|
|
|
|
}
|
2016-04-30 16:55:26 -05:00
|
|
|
}
|
|
|
|
|
2016-05-10 11:15:19 -05:00
|
|
|
func TestContextImport_moduleProvider(t *testing.T) {
|
2018-05-29 15:14:20 -05:00
|
|
|
p := testProvider("aws")
|
2018-05-29 14:50:31 -05:00
|
|
|
|
2016-05-10 11:15:19 -05:00
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
configured := false
|
|
|
|
p.ConfigureFn = func(c *ResourceConfig) error {
|
|
|
|
configured = true
|
|
|
|
|
|
|
|
if v, ok := c.Get("foo"); !ok || v.(string) != "bar" {
|
|
|
|
return fmt.Errorf("bad")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-05-29 15:14:20 -05:00
|
|
|
m := testModule(t, "import-provider")
|
|
|
|
ctx := testContext2(t, &ContextOpts{
|
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2018-05-29 15:14:20 -05:00
|
|
|
})
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
state, diags := ctx.Import(&ImportOpts{
|
2016-05-10 11:15:19 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2018-05-04 21:24:06 -05:00
|
|
|
Addr: addrs.RootModuleInstance.ResourceInstance(
|
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2018-12-04 14:39:46 -06:00
|
|
|
ID: "bar",
|
2016-05-10 11:15:19 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if diags.HasErrors() {
|
|
|
|
t.Fatalf("unexpected errors: %s", diags.Err())
|
2016-05-10 11:15:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if !configured {
|
|
|
|
t.Fatal("didn't configure provider")
|
|
|
|
}
|
|
|
|
|
|
|
|
actual := strings.TrimSpace(state.String())
|
2016-11-02 12:29:58 -05:00
|
|
|
expected := strings.TrimSpace(testImportStr)
|
|
|
|
if actual != expected {
|
2018-09-20 17:22:42 -05:00
|
|
|
t.Fatalf("expected:\n%s\n\ngot:\n%s", expected, actual)
|
2016-11-02 12:29:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-17 18:02:21 -05:00
|
|
|
// Importing into a module requires a provider config in that module.
|
|
|
|
func TestContextImport_providerModule(t *testing.T) {
|
2017-01-24 17:36:45 -06:00
|
|
|
p := testProvider("aws")
|
2020-03-20 07:15:29 -05:00
|
|
|
m := testModule(t, "import-module")
|
2017-01-24 17:36:45 -06:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-04 21:24:06 -05:00
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2017-01-24 17:36:45 -06:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
configured := false
|
|
|
|
p.ConfigureFn = func(c *ResourceConfig) error {
|
|
|
|
configured = true
|
|
|
|
|
|
|
|
if v, ok := c.Get("foo"); !ok || v.(string) != "bar" {
|
|
|
|
return fmt.Errorf("bad")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
_, diags := ctx.Import(&ImportOpts{
|
2017-01-24 17:36:45 -06:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2018-05-04 21:24:06 -05:00
|
|
|
Addr: addrs.RootModuleInstance.Child("child", addrs.NoKey).ResourceInstance(
|
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2018-12-04 14:39:46 -06:00
|
|
|
ID: "bar",
|
2017-01-24 17:36:45 -06:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if diags.HasErrors() {
|
|
|
|
t.Fatalf("unexpected errors: %s", diags.Err())
|
2017-01-24 17:36:45 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if !configured {
|
|
|
|
t.Fatal("didn't configure provider")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-02 12:29:58 -05:00
|
|
|
// Test that import will interpolate provider configuration and use
|
|
|
|
// that configuration for import.
|
|
|
|
func TestContextImport_providerVarConfig(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2017-04-21 19:19:37 -05:00
|
|
|
m := testModule(t, "import-provider-vars")
|
2016-11-02 12:29:58 -05:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-04 21:24:06 -05:00
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2018-05-04 21:24:06 -05:00
|
|
|
Variables: InputValues{
|
|
|
|
"foo": &InputValue{
|
2018-06-01 17:27:29 -05:00
|
|
|
Value: cty.StringVal("bar"),
|
2018-05-04 21:24:06 -05:00
|
|
|
SourceType: ValueFromCaller,
|
|
|
|
},
|
2016-11-02 12:29:58 -05:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
configured := false
|
|
|
|
p.ConfigureFn = func(c *ResourceConfig) error {
|
|
|
|
configured = true
|
|
|
|
|
|
|
|
if v, ok := c.Get("foo"); !ok || v.(string) != "bar" {
|
2018-06-01 17:27:29 -05:00
|
|
|
return fmt.Errorf("bad value %#v; want %#v", v, "bar")
|
2016-11-02 12:29:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
state, diags := ctx.Import(&ImportOpts{
|
2016-11-02 12:29:58 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2018-05-04 21:24:06 -05:00
|
|
|
Addr: addrs.RootModuleInstance.ResourceInstance(
|
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2018-12-04 14:39:46 -06:00
|
|
|
ID: "bar",
|
2016-11-02 12:29:58 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if diags.HasErrors() {
|
|
|
|
t.Fatalf("unexpected errors: %s", diags.Err())
|
2016-11-02 12:29:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if !configured {
|
|
|
|
t.Fatal("didn't configure provider")
|
|
|
|
}
|
|
|
|
|
|
|
|
actual := strings.TrimSpace(state.String())
|
2016-05-10 11:15:19 -05:00
|
|
|
expected := strings.TrimSpace(testImportStr)
|
|
|
|
if actual != expected {
|
|
|
|
t.Fatalf("bad: \n%s", actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-02 13:08:16 -05:00
|
|
|
// Test that provider configs can't reference resources.
|
|
|
|
func TestContextImport_providerNonVarConfig(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2017-04-21 19:19:37 -05:00
|
|
|
m := testModule(t, "import-provider-non-vars")
|
2016-11-02 13:08:16 -05:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-04 21:24:06 -05:00
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2016-11-02 13:08:16 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
_, diags := ctx.Import(&ImportOpts{
|
2016-11-02 13:08:16 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2018-05-04 21:24:06 -05:00
|
|
|
Addr: addrs.RootModuleInstance.ResourceInstance(
|
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2020-03-20 07:15:29 -05:00
|
|
|
ID: "bar",
|
2016-11-02 13:08:16 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if !diags.HasErrors() {
|
2016-11-02 13:08:16 -05:00
|
|
|
t.Fatal("should error")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-28 12:28:23 -05:00
|
|
|
func TestContextImport_refresh(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2017-04-21 19:19:37 -05:00
|
|
|
m := testModule(t, "import-provider")
|
2016-04-28 12:28:23 -05:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-04 21:24:06 -05:00
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2016-04-28 12:28:23 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-09-05 16:35:30 -05:00
|
|
|
p.ReadResourceFn = nil
|
2018-09-20 17:22:42 -05:00
|
|
|
|
2018-09-05 16:35:30 -05:00
|
|
|
p.ReadResourceResponse = providers.ReadResourceResponse{
|
|
|
|
NewState: cty.ObjectVal(map[string]cty.Value{
|
|
|
|
"id": cty.StringVal("foo"),
|
|
|
|
"foo": cty.StringVal("bar"),
|
|
|
|
}),
|
2016-04-28 12:28:23 -05:00
|
|
|
}
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
state, diags := ctx.Import(&ImportOpts{
|
2016-04-28 12:28:23 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2018-05-04 21:24:06 -05:00
|
|
|
Addr: addrs.RootModuleInstance.ResourceInstance(
|
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2020-03-20 07:15:29 -05:00
|
|
|
ID: "bar",
|
2016-04-28 12:28:23 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if diags.HasErrors() {
|
|
|
|
t.Fatalf("unexpected errors: %s", diags.Err())
|
2016-04-28 12:28:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
actual := strings.TrimSpace(state.String())
|
|
|
|
expected := strings.TrimSpace(testImportRefreshStr)
|
|
|
|
if actual != expected {
|
|
|
|
t.Fatalf("bad: \n%s", actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-09 15:39:34 -05:00
|
|
|
func TestContextImport_refreshNil(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2017-04-21 19:19:37 -05:00
|
|
|
m := testModule(t, "import-provider")
|
2016-05-09 15:39:34 -05:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-04 21:24:06 -05:00
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2016-05-09 15:39:34 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-09-05 16:35:30 -05:00
|
|
|
p.ReadResourceFn = func(req providers.ReadResourceRequest) providers.ReadResourceResponse {
|
|
|
|
return providers.ReadResourceResponse{
|
|
|
|
NewState: cty.NullVal(cty.DynamicPseudoType),
|
|
|
|
}
|
2016-05-09 15:39:34 -05:00
|
|
|
}
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
state, diags := ctx.Import(&ImportOpts{
|
2016-05-09 15:39:34 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2018-05-04 21:24:06 -05:00
|
|
|
Addr: addrs.RootModuleInstance.ResourceInstance(
|
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2020-03-20 07:15:29 -05:00
|
|
|
ID: "bar",
|
2016-05-09 15:39:34 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if !diags.HasErrors() {
|
2016-05-09 15:39:34 -05:00
|
|
|
t.Fatal("should error")
|
|
|
|
}
|
|
|
|
|
|
|
|
actual := strings.TrimSpace(state.String())
|
|
|
|
expected := "<no state>"
|
|
|
|
if actual != expected {
|
|
|
|
t.Fatalf("bad: \n%s", actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-30 00:09:34 -05:00
|
|
|
func TestContextImport_module(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2020-03-20 07:15:29 -05:00
|
|
|
m := testModule(t, "import-module")
|
2016-04-30 00:09:34 -05:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-04 21:24:06 -05:00
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2016-04-30 00:09:34 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
state, diags := ctx.Import(&ImportOpts{
|
2016-04-30 00:09:34 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2020-06-10 16:02:41 -05:00
|
|
|
Addr: addrs.RootModuleInstance.Child("child", addrs.IntKey(0)).ResourceInstance(
|
2018-05-04 21:24:06 -05:00
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2020-03-20 07:15:29 -05:00
|
|
|
ID: "bar",
|
2016-04-30 00:09:34 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if diags.HasErrors() {
|
|
|
|
t.Fatalf("unexpected errors: %s", diags.Err())
|
2016-04-30 00:09:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
actual := strings.TrimSpace(state.String())
|
2016-04-30 01:28:58 -05:00
|
|
|
expected := strings.TrimSpace(testImportModuleStr)
|
2016-04-30 00:09:34 -05:00
|
|
|
if actual != expected {
|
|
|
|
t.Fatalf("bad: \n%s", actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-30 01:59:11 -05:00
|
|
|
func TestContextImport_moduleDepth2(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2020-03-20 07:15:29 -05:00
|
|
|
m := testModule(t, "import-module")
|
2016-04-30 01:59:11 -05:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-04 21:24:06 -05:00
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2016-04-30 01:59:11 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
state, diags := ctx.Import(&ImportOpts{
|
2016-04-30 01:59:11 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2020-06-10 16:02:41 -05:00
|
|
|
Addr: addrs.RootModuleInstance.Child("child", addrs.IntKey(0)).Child("nested", addrs.NoKey).ResourceInstance(
|
2018-05-04 21:24:06 -05:00
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2020-03-20 07:15:29 -05:00
|
|
|
ID: "baz",
|
2016-04-30 01:59:11 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if diags.HasErrors() {
|
|
|
|
t.Fatalf("unexpected errors: %s", diags.Err())
|
2016-04-30 01:59:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
actual := strings.TrimSpace(state.String())
|
|
|
|
expected := strings.TrimSpace(testImportModuleDepth2Str)
|
|
|
|
if actual != expected {
|
|
|
|
t.Fatalf("bad: \n%s", actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-30 17:01:31 -05:00
|
|
|
func TestContextImport_moduleDiff(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2020-03-20 07:15:29 -05:00
|
|
|
m := testModule(t, "import-module")
|
2016-04-30 17:01:31 -05:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-04 21:24:06 -05:00
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2016-04-30 17:01:31 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
state, diags := ctx.Import(&ImportOpts{
|
2016-04-30 17:01:31 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2020-06-10 16:02:41 -05:00
|
|
|
Addr: addrs.RootModuleInstance.Child("child", addrs.IntKey(0)).ResourceInstance(
|
2018-05-04 21:24:06 -05:00
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2020-03-20 07:15:29 -05:00
|
|
|
ID: "baz",
|
2016-04-30 17:00:18 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if diags.HasErrors() {
|
|
|
|
t.Fatalf("unexpected errors: %s", diags.Err())
|
2016-04-30 17:00:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
actual := strings.TrimSpace(state.String())
|
2020-03-20 07:15:29 -05:00
|
|
|
expected := strings.TrimSpace(testImportModuleStr)
|
2016-04-30 17:00:18 -05:00
|
|
|
if actual != expected {
|
2018-09-20 17:22:42 -05:00
|
|
|
t.Fatalf("\nexpected: %q\ngot: %q\n", expected, actual)
|
2016-04-30 17:00:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-30 17:04:40 -05:00
|
|
|
func TestContextImport_multiState(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2017-04-21 19:19:37 -05:00
|
|
|
m := testModule(t, "import-provider")
|
2018-09-20 17:22:42 -05:00
|
|
|
|
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
Provider: &configschema.Block{
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
2017-04-21 19:40:46 -05:00
|
|
|
},
|
2018-09-20 17:22:42 -05:00
|
|
|
},
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"id": {Type: cty.String, Computed: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"aws_instance_thing": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"id": {Type: cty.String, Computed: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2016-04-30 17:04:40 -05:00
|
|
|
|
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
&InstanceState{
|
|
|
|
ID: "bar",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance_thing"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-09-20 17:22:42 -05:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2018-09-20 17:22:42 -05:00
|
|
|
})
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
state, diags := ctx.Import(&ImportOpts{
|
2016-04-30 17:04:40 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2018-05-04 21:24:06 -05:00
|
|
|
Addr: addrs.RootModuleInstance.ResourceInstance(
|
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2020-03-20 07:15:29 -05:00
|
|
|
ID: "bar",
|
2016-04-30 17:04:40 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if diags.HasErrors() {
|
|
|
|
t.Fatalf("unexpected errors: %s", diags.Err())
|
2016-04-30 17:04:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
actual := strings.TrimSpace(state.String())
|
|
|
|
expected := strings.TrimSpace(testImportMultiStr)
|
|
|
|
if actual != expected {
|
|
|
|
t.Fatalf("bad: \n%s", actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-30 17:29:03 -05:00
|
|
|
func TestContextImport_multiStateSame(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2017-04-21 19:19:37 -05:00
|
|
|
m := testModule(t, "import-provider")
|
2018-09-20 17:22:42 -05:00
|
|
|
|
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
Provider: &configschema.Block{
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
2017-04-21 19:40:46 -05:00
|
|
|
},
|
2018-09-20 17:22:42 -05:00
|
|
|
},
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"id": {Type: cty.String, Computed: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"aws_instance_thing": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"id": {Type: cty.String, Computed: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2016-04-30 17:29:03 -05:00
|
|
|
|
|
|
|
p.ImportStateReturn = []*InstanceState{
|
|
|
|
&InstanceState{
|
|
|
|
ID: "foo",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance"},
|
|
|
|
},
|
|
|
|
&InstanceState{
|
|
|
|
ID: "bar",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance_thing"},
|
|
|
|
},
|
|
|
|
&InstanceState{
|
|
|
|
ID: "qux",
|
|
|
|
Ephemeral: EphemeralState{Type: "aws_instance_thing"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-09-20 17:22:42 -05:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
|
|
|
Config: m,
|
2020-03-31 13:03:33 -05:00
|
|
|
Providers: map[addrs.Provider]providers.Factory{
|
|
|
|
addrs.NewDefaultProvider("aws"): testProviderFuncFixed(p),
|
|
|
|
},
|
2018-09-20 17:22:42 -05:00
|
|
|
})
|
|
|
|
|
2018-05-29 14:02:34 -05:00
|
|
|
state, diags := ctx.Import(&ImportOpts{
|
2016-04-30 17:29:03 -05:00
|
|
|
Targets: []*ImportTarget{
|
|
|
|
&ImportTarget{
|
2018-05-04 21:24:06 -05:00
|
|
|
Addr: addrs.RootModuleInstance.ResourceInstance(
|
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo", addrs.NoKey,
|
|
|
|
),
|
2020-03-20 07:15:29 -05:00
|
|
|
ID: "bar",
|
2016-04-30 17:29:03 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-05-29 14:02:34 -05:00
|
|
|
if diags.HasErrors() {
|
|
|
|
t.Fatalf("unexpected errors: %s", diags.Err())
|
2016-04-30 17:29:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
actual := strings.TrimSpace(state.String())
|
|
|
|
expected := strings.TrimSpace(testImportMultiSameStr)
|
|
|
|
if actual != expected {
|
|
|
|
t.Fatalf("bad: \n%s", actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-28 12:25:58 -05:00
|
|
|
const testImportStr = `
|
|
|
|
aws_instance.foo:
|
|
|
|
ID = foo
|
2020-03-31 13:03:33 -05:00
|
|
|
provider = provider["registry.terraform.io/hashicorp/aws"]
|
2016-04-28 12:25:58 -05:00
|
|
|
`
|
2016-04-28 12:28:23 -05:00
|
|
|
|
2016-08-19 18:14:33 -05:00
|
|
|
const testImportCountIndexStr = `
|
|
|
|
aws_instance.foo.0:
|
|
|
|
ID = foo
|
2020-03-31 13:03:33 -05:00
|
|
|
provider = provider["registry.terraform.io/hashicorp/aws"]
|
2016-08-19 18:14:33 -05:00
|
|
|
`
|
|
|
|
|
2016-04-30 01:28:58 -05:00
|
|
|
const testImportModuleStr = `
|
|
|
|
<no state>
|
2020-06-10 16:02:41 -05:00
|
|
|
module.child[0]:
|
2016-04-30 01:28:58 -05:00
|
|
|
aws_instance.foo:
|
|
|
|
ID = foo
|
2020-03-31 13:03:33 -05:00
|
|
|
provider = provider["registry.terraform.io/hashicorp/aws"]
|
2016-04-30 01:28:58 -05:00
|
|
|
`
|
|
|
|
|
2016-04-30 01:59:11 -05:00
|
|
|
const testImportModuleDepth2Str = `
|
|
|
|
<no state>
|
2020-06-10 16:02:41 -05:00
|
|
|
module.child[0].nested:
|
2016-04-30 17:01:31 -05:00
|
|
|
aws_instance.foo:
|
|
|
|
ID = foo
|
2020-03-31 13:03:33 -05:00
|
|
|
provider = provider["registry.terraform.io/hashicorp/aws"]
|
2016-04-30 17:01:31 -05:00
|
|
|
`
|
|
|
|
|
2016-04-30 17:00:18 -05:00
|
|
|
const testImportModuleExistingStr = `
|
2018-09-20 17:22:42 -05:00
|
|
|
<no state>
|
2016-04-30 17:00:18 -05:00
|
|
|
module.foo:
|
|
|
|
aws_instance.bar:
|
|
|
|
ID = bar
|
2020-03-31 13:03:33 -05:00
|
|
|
provider = provider["registry.terraform.io/hashicorp/aws"]
|
2016-04-30 17:00:18 -05:00
|
|
|
aws_instance.foo:
|
|
|
|
ID = foo
|
2020-03-31 13:03:33 -05:00
|
|
|
provider = provider["registry.terraform.io/hashicorp/aws"]
|
2016-04-30 17:00:18 -05:00
|
|
|
`
|
|
|
|
|
2016-04-30 17:04:40 -05:00
|
|
|
const testImportMultiStr = `
|
|
|
|
aws_instance.foo:
|
|
|
|
ID = foo
|
2020-03-31 13:03:33 -05:00
|
|
|
provider = provider["registry.terraform.io/hashicorp/aws"]
|
2016-04-30 17:04:40 -05:00
|
|
|
aws_instance_thing.foo:
|
|
|
|
ID = bar
|
2020-03-31 13:03:33 -05:00
|
|
|
provider = provider["registry.terraform.io/hashicorp/aws"]
|
2016-04-30 17:04:40 -05:00
|
|
|
`
|
|
|
|
|
2016-04-30 17:29:03 -05:00
|
|
|
const testImportMultiSameStr = `
|
|
|
|
aws_instance.foo:
|
|
|
|
ID = foo
|
2020-03-31 13:03:33 -05:00
|
|
|
provider = provider["registry.terraform.io/hashicorp/aws"]
|
2016-04-30 17:29:03 -05:00
|
|
|
aws_instance_thing.foo:
|
|
|
|
ID = bar
|
2020-03-31 13:03:33 -05:00
|
|
|
provider = provider["registry.terraform.io/hashicorp/aws"]
|
2016-04-30 17:29:03 -05:00
|
|
|
aws_instance_thing.foo-1:
|
|
|
|
ID = qux
|
2020-03-31 13:03:33 -05:00
|
|
|
provider = provider["registry.terraform.io/hashicorp/aws"]
|
2016-04-30 17:29:03 -05:00
|
|
|
`
|
|
|
|
|
2016-04-28 12:28:23 -05:00
|
|
|
const testImportRefreshStr = `
|
|
|
|
aws_instance.foo:
|
|
|
|
ID = foo
|
2020-03-31 13:03:33 -05:00
|
|
|
provider = provider["registry.terraform.io/hashicorp/aws"]
|
2016-04-28 12:28:23 -05:00
|
|
|
foo = bar
|
|
|
|
`
|