provider/openstack: Support Import openstack_compute_servergroup_v2 (#7349)

This commit is contained in:
Joe Topjian 2016-07-03 09:38:21 -06:00 committed by Paul Stack
parent c1e4d297f3
commit 0466520626
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,29 @@
package openstack
import (
"testing"
"github.com/hashicorp/terraform/helper/resource"
)
func TestAccComputeV2ServerGroup_importBasic(t *testing.T) {
resourceName := "openstack_compute_servergroup_v2.mysg"
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testAccCheckComputeV2ServerGroupDestroy,
Steps: []resource.TestStep{
resource.TestStep{
Config: testAccComputeV2ServerGroup_basic,
},
resource.TestStep{
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"region"},
},
},
})
}

View File

@ -14,6 +14,9 @@ func resourceComputeServerGroupV2() *schema.Resource {
Read: resourceComputeServerGroupV2Read,
Update: nil,
Delete: resourceComputeServerGroupV2Delete,
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},
Schema: map[string]*schema.Schema{
"region": &schema.Schema{