» 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:
-
arn
- Amazon Resource Name of the file system. -
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.