Data Source: aws_efs_file_system

Provides information about an Elastic File System (EFS).

Example Usage

variable "file_system_id" {
  type = "string"
  default = ""
}

data "aws_efs_file_system" "by_id" {
  file_system_id = "${var.file_system_id}"
}

Argument Reference

The following arguments are supported:

  • file_system_id - (Optional) The ID that identifies the file system (e.g. fs-ccfc0d65).
  • creation_token - (Optional) Restricts the list to the file system with this creation token.

Attributes Reference

In addition to all arguments above, the following attributes are exported:

© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/d/efs_file_system.html