github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/builtin/providers/aws/import_aws_db_event_subscription_test.go (about) 1 package aws 2 3 import ( 4 "fmt" 5 "testing" 6 7 "github.com/hashicorp/terraform/helper/acctest" 8 "github.com/hashicorp/terraform/helper/resource" 9 ) 10 11 func TestAccAWSDBEventSubscription_importBasic(t *testing.T) { 12 resourceName := "aws_db_event_subscription.bar" 13 rInt := acctest.RandInt() 14 subscriptionName := fmt.Sprintf("tf-acc-test-rds-event-subs-%d", rInt) 15 16 resource.Test(t, resource.TestCase{ 17 PreCheck: func() { testAccPreCheck(t) }, 18 Providers: testAccProviders, 19 CheckDestroy: testAccCheckAWSDBEventSubscriptionDestroy, 20 Steps: []resource.TestStep{ 21 { 22 Config: testAccAWSDBEventSubscriptionConfig(rInt), 23 }, 24 25 { 26 ResourceName: resourceName, 27 ImportState: true, 28 ImportStateVerify: true, 29 ImportStateId: subscriptionName, 30 }, 31 }, 32 }) 33 }