github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/website/source/docs/providers/aws/d/efs_file_system.html.markdown (about)

     1  ---
     2  layout: "aws"
     3  page_title: "AWS: efs_file_system"
     4  sidebar_current: "docs-aws-datasource-efs-file-system"
     5  description: |-
     6    Provides an Elastic File System (EFS) data source.
     7  ---
     8  
     9  # aws_efs_file_system
    10  
    11  Provides information about an Elastic File System (EFS).
    12  
    13  ## Example Usage
    14  
    15  ```hcl
    16  variable "file_system_id" {
    17    type = "string"
    18    default = ""
    19  }
    20  
    21  data "aws_efs_file_system" "by_id" {
    22    file_system_id = "${var.file_system_id}"
    23  }
    24  ```
    25  
    26  ## Argument Reference
    27  
    28  The following arguments are supported:
    29  
    30  * `file_system_id` - (Optional) The ID that identifies the file system (e.g. fs-ccfc0d65).
    31  * `creation_token` - (Optional) Restricts the list to the file system with this creation token
    32  
    33  ## Attributes Reference
    34  
    35  The following attributes are exported:
    36  
    37  * `performance_mode` - The PerformanceMode of the file system.
    38  * `tags` - The list of tags assigned to the file system.
    39