Provides information about an Elastic File System (EFS).
variable "file_system_id" {
type = "string"
default = ""
}
data "aws_efs_file_system" "by_id" {
file_system_id = "${var.file_system_id}"
}
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. In addition to all arguments above, the following attributes are exported:
performance_mode - The PerformanceMode of the file system. tags - The list of tags assigned to the file system. encrypted - Whether EFS is encrypted. kms_key_id - The ARN for the KMS encryption key. dns_name - The DNS name for the filesystem per documented convention.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/d/efs_file_system.html