github.com/koding/terraform@v0.6.4-0.20170608090606-5d7e0339779d/builtin/providers/aws/import_aws_flow_log_test.go (about) 1 package aws 2 3 import ( 4 "testing" 5 6 "github.com/hashicorp/terraform/helper/acctest" 7 "github.com/hashicorp/terraform/helper/resource" 8 ) 9 10 func TestAccAWSFlowLog_importBasic(t *testing.T) { 11 resourceName := "aws_flow_log.test_flow_log" 12 13 rInt := acctest.RandInt() 14 15 resource.Test(t, resource.TestCase{ 16 PreCheck: func() { testAccPreCheck(t) }, 17 Providers: testAccProviders, 18 CheckDestroy: testAccCheckFlowLogDestroy, 19 Steps: []resource.TestStep{ 20 resource.TestStep{ 21 Config: testAccFlowLogConfig_basic(rInt), 22 }, 23 24 resource.TestStep{ 25 ResourceName: resourceName, 26 ImportState: true, 27 ImportStateVerify: true, 28 }, 29 }, 30 }) 31 }