providers/terraform: data source uses backends for state loading
This commit is contained in:
parent
88d8d5e6ee
commit
264d3c2808
|
@ -1,11 +1,14 @@
|
||||||
package terraform
|
package terraform
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
backendinit "github.com/hashicorp/terraform/backend/init"
|
||||||
|
"github.com/hashicorp/terraform/config"
|
||||||
"github.com/hashicorp/terraform/helper/schema"
|
"github.com/hashicorp/terraform/helper/schema"
|
||||||
"github.com/hashicorp/terraform/state/remote"
|
"github.com/hashicorp/terraform/terraform"
|
||||||
)
|
)
|
||||||
|
|
||||||
func dataSourceRemoteState() *schema.Resource {
|
func dataSourceRemoteState() *schema.Resource {
|
||||||
|
@ -43,9 +46,11 @@ func dataSourceRemoteState() *schema.Resource {
|
||||||
|
|
||||||
func dataSourceRemoteStateRead(d *schema.ResourceData, meta interface{}) error {
|
func dataSourceRemoteStateRead(d *schema.ResourceData, meta interface{}) error {
|
||||||
backend := d.Get("backend").(string)
|
backend := d.Get("backend").(string)
|
||||||
config := make(map[string]string)
|
|
||||||
for k, v := range d.Get("config").(map[string]interface{}) {
|
// Get the configuration in a type we want.
|
||||||
config[k] = v.(string)
|
rawConfig, err := config.NewRawConfig(d.Get("config").(map[string]interface{}))
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("error initializing backend: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Don't break people using the old _local syntax - but note warning above
|
// Don't break people using the old _local syntax - but note warning above
|
||||||
|
@ -55,15 +60,23 @@ func dataSourceRemoteStateRead(d *schema.ResourceData, meta interface{}) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create the client to access our remote state
|
// Create the client to access our remote state
|
||||||
log.Printf("[DEBUG] Initializing remote state client: %s", backend)
|
log.Printf("[DEBUG] Initializing remote state backend: %s", backend)
|
||||||
client, err := remote.NewClient(backend, config)
|
f := backendinit.Backend(backend)
|
||||||
if err != nil {
|
if f == nil {
|
||||||
return err
|
return fmt.Errorf("Unknown backend type: %s", backend)
|
||||||
|
}
|
||||||
|
b := f()
|
||||||
|
|
||||||
|
// Configure the backend
|
||||||
|
if err := b.Configure(terraform.NewResourceConfig(rawConfig)); err != nil {
|
||||||
|
return fmt.Errorf("error initializing backend: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create the remote state itself and refresh it in order to load the state
|
// Get the state
|
||||||
log.Printf("[DEBUG] Loading remote state...")
|
state, err := b.State()
|
||||||
state := &remote.State{Client: client}
|
if err != nil {
|
||||||
|
return fmt.Errorf("error loading the remote state: %s", err)
|
||||||
|
}
|
||||||
if err := state.RefreshState(); err != nil {
|
if err := state.RefreshState(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
backendinit "github.com/hashicorp/terraform/backend/init"
|
||||||
"github.com/hashicorp/terraform/helper/resource"
|
"github.com/hashicorp/terraform/helper/resource"
|
||||||
"github.com/hashicorp/terraform/terraform"
|
"github.com/hashicorp/terraform/terraform"
|
||||||
)
|
)
|
||||||
|
@ -24,6 +25,25 @@ func TestState_basic(t *testing.T) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestState_backends(t *testing.T) {
|
||||||
|
backendinit.Set("_ds_test", backendinit.Backend("local"))
|
||||||
|
defer backendinit.Set("_ds_test", nil)
|
||||||
|
|
||||||
|
resource.UnitTest(t, resource.TestCase{
|
||||||
|
PreCheck: func() { testAccPreCheck(t) },
|
||||||
|
Providers: testAccProviders,
|
||||||
|
Steps: []resource.TestStep{
|
||||||
|
{
|
||||||
|
Config: testAccState_backend,
|
||||||
|
Check: resource.ComposeTestCheckFunc(
|
||||||
|
testAccCheckStateValue(
|
||||||
|
"data.terraform_remote_state.foo", "foo", "bar"),
|
||||||
|
),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
func TestState_complexOutputs(t *testing.T) {
|
func TestState_complexOutputs(t *testing.T) {
|
||||||
resource.UnitTest(t, resource.TestCase{
|
resource.UnitTest(t, resource.TestCase{
|
||||||
PreCheck: func() { testAccPreCheck(t) },
|
PreCheck: func() { testAccPreCheck(t) },
|
||||||
|
@ -72,6 +92,15 @@ data "terraform_remote_state" "foo" {
|
||||||
}
|
}
|
||||||
}`
|
}`
|
||||||
|
|
||||||
|
const testAccState_backend = `
|
||||||
|
data "terraform_remote_state" "foo" {
|
||||||
|
backend = "_ds_test"
|
||||||
|
|
||||||
|
config {
|
||||||
|
path = "./test-fixtures/basic.tfstate"
|
||||||
|
}
|
||||||
|
}`
|
||||||
|
|
||||||
const testAccState_complexOutputs = `
|
const testAccState_complexOutputs = `
|
||||||
resource "terraform_remote_state" "foo" {
|
resource "terraform_remote_state" "foo" {
|
||||||
backend = "local"
|
backend = "local"
|
||||||
|
|
Loading…
Reference in New Issue