File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ package aws
2+
3+ import (
4+ "testing"
5+
6+ "github.com/hashicorp/terraform/helper/resource"
7+ )
8+
9+ func TestAccAWSEFSFileSystem_importBasic (t * testing.T ) {
10+ resourceName := "aws_efs_file_system.foo-with-tags"
11+
12+ resource .Test (t , resource.TestCase {
13+ PreCheck : func () { testAccPreCheck (t ) },
14+ Providers : testAccProviders ,
15+ CheckDestroy : testAccCheckEfsFileSystemDestroy ,
16+ Steps : []resource.TestStep {
17+ resource.TestStep {
18+ Config : testAccAWSEFSFileSystemConfigWithTags ,
19+ },
20+
21+ resource.TestStep {
22+ ResourceName : resourceName ,
23+ ImportState : true ,
24+ ImportStateVerify : true ,
25+ ImportStateVerifyIgnore : []string {"reference_name" },
26+ },
27+ },
28+ })
29+ }
Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ func resourceAwsEfsFileSystem() *schema.Resource {
1919 Update : resourceAwsEfsFileSystemUpdate ,
2020 Delete : resourceAwsEfsFileSystemDelete ,
2121
22+ Importer : & schema.ResourceImporter {
23+ State : schema .ImportStatePassthrough ,
24+ },
25+
2226 Schema : map [string ]* schema.Schema {
2327 "reference_name" : & schema.Schema {
2428 Type : schema .TypeString ,
You can’t perform that action at this time.
0 commit comments