github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/builtin/providers/aws/import_aws_vpc_peering_connection_test.go (about) 1 package aws 2 3 import ( 4 "testing" 5 6 "github.com/hashicorp/terraform/helper/resource" 7 ) 8 9 func TestAccAWSVPCPeeringConnection_importBasic(t *testing.T) { 10 resourceName := "aws_vpc_peering_connection.foo" 11 12 resource.Test(t, resource.TestCase{ 13 PreCheck: func() { testAccPreCheck(t) }, 14 Providers: testAccProviders, 15 CheckDestroy: testAccCheckAWSVpcPeeringConnectionDestroy, 16 Steps: []resource.TestStep{ 17 resource.TestStep{ 18 Config: testAccVpcPeeringConfig, 19 }, 20 21 resource.TestStep{ 22 ResourceName: resourceName, 23 ImportState: true, 24 ImportStateVerify: true, 25 ImportStateVerifyIgnore: []string{ 26 "auto_accept"}, 27 }, 28 }, 29 }) 30 }