github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/builtin/providers/aws/import_aws_vpn_connection_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 TestAccAWSVpnConnection_importBasic(t *testing.T) {
    11  	resourceName := "aws_vpn_connection.foo"
    12  	rBgpAsn := acctest.RandIntRange(64512, 65534)
    13  
    14  	resource.Test(t, resource.TestCase{
    15  		PreCheck:     func() { testAccPreCheck(t) },
    16  		Providers:    testAccProviders,
    17  		CheckDestroy: testAccAwsVpnConnectionDestroy,
    18  		Steps: []resource.TestStep{
    19  			{
    20  				Config: testAccAwsVpnConnectionConfig(rBgpAsn),
    21  			},
    22  			{
    23  				ResourceName:      resourceName,
    24  				ImportState:       true,
    25  				ImportStateVerify: true,
    26  			},
    27  		},
    28  	})
    29  }