providers/heroku: import heroku_pipeline_coupling resource (#14495)

This commit is contained in:
cmorent 2017-05-17 16:53:08 +02:00 committed by Clint
parent f8b1d81ed8
commit 0c260d1341
2 changed files with 61 additions and 2 deletions

View File

@ -0,0 +1,43 @@
package heroku
import (
"fmt"
"testing"
heroku "github.com/cyberdelia/heroku-go/v3"
"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
)
func TestAccHerokuPipelineCoupling_importBasic(t *testing.T) {
var coupling heroku.PipelineCouplingInfoResult
appName := fmt.Sprintf("tftest-%s", acctest.RandString(10))
pipelineName := fmt.Sprintf("tftest-%s", acctest.RandString(10))
stageName := "development"
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testAccCheckHerokuPipelineCouplingDestroy,
Steps: []resource.TestStep{
{
Config: testAccCheckHerokuPipelineCouplingConfig_basic(appName, pipelineName, stageName),
Check: resource.ComposeTestCheckFunc(
testAccCheckHerokuPipelineCouplingExists("heroku_pipeline_coupling.default", &coupling),
testAccCheckHerokuPipelineCouplingAttributes(
&coupling,
"heroku_pipeline.default",
stageName,
),
),
},
{
ResourceName: "heroku_pipeline_coupling.default",
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"config_vars"},
},
},
})
}

View File

@ -15,7 +15,15 @@ func resourceHerokuPipelineCoupling() *schema.Resource {
Read: resourceHerokuPipelineCouplingRead,
Delete: resourceHerokuPipelineCouplingDelete,
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},
Schema: map[string]*schema.Schema{
"app_id": {
Type: schema.TypeString,
Computed: true,
},
"app": {
Type: schema.TypeString,
Required: true,
@ -81,9 +89,17 @@ func resourceHerokuPipelineCouplingRead(d *schema.ResourceData, meta interface{}
return fmt.Errorf("Error retrieving pipeline: %s", err)
}
d.Set("app", p.App)
d.Set("pipeline", p.Pipeline)
// grab App info
app, err := client.AppInfo(context.TODO(), p.App.ID)
if err != nil {
log.Printf("[WARN] Error looking up addional App info for pipeline coupling (%s): %s", d.Id(), err)
} else {
d.Set("app", app.Name)
}
d.Set("app_id", p.App.ID)
d.Set("stage", p.Stage)
d.Set("pipeline", p.Pipeline.ID)
return nil
}