mirror of https://github.com/hashicorp/terraform
Merge pull request #25377 from hashicorp/jbardin/remote-state
Correct remote state return valuepull/25392/head
commit
98ff2065bc
@ -0,0 +1,29 @@
|
||||
package e2etest
|
||||
|
||||
import (
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
"github.com/hashicorp/terraform/e2e"
|
||||
)
|
||||
|
||||
func TestTerraformProviderRead(t *testing.T) {
|
||||
// Ensure the terraform provider can correctly read a remote state
|
||||
|
||||
t.Parallel()
|
||||
fixturePath := filepath.Join("testdata", "terraform-provider")
|
||||
tf := e2e.NewBinary(terraformBin, fixturePath)
|
||||
defer tf.Close()
|
||||
|
||||
//// INIT
|
||||
_, stderr, err := tf.Run("init")
|
||||
if err != nil {
|
||||
t.Fatalf("unexpected init error: %s\nstderr:\n%s", err, stderr)
|
||||
}
|
||||
|
||||
//// PLAN
|
||||
_, stderr, err = tf.Run("plan")
|
||||
if err != nil {
|
||||
t.Fatalf("unexpected plan error: %s\nstderr:\n%s", err, stderr)
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,13 @@
|
||||
{
|
||||
"version": 4,
|
||||
"terraform_version": "0.13.0",
|
||||
"serial": 1,
|
||||
"lineage": "8fab7b5a-511c-d586-988e-250f99c8feb4",
|
||||
"outputs": {
|
||||
"out": {
|
||||
"value": "test",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"resources": []
|
||||
}
|
||||
Loading…
Reference in new issue