https://github.com/aplyca/terraform-aws-efs
A Terraform Module for how to create EFS on AWS
https://github.com/aplyca/terraform-aws-efs
amazon-web-services automation aws efs filesystem infrastructure-as-code nfs terraform
Last synced: 2 months ago
JSON representation
A Terraform Module for how to create EFS on AWS
- Host: GitHub
- URL: https://github.com/aplyca/terraform-aws-efs
- Owner: Aplyca
- License: mit
- Created: 2017-10-29T14:01:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-09-16T19:34:32.000Z (over 6 years ago)
- Last Synced: 2025-07-10T14:34:33.775Z (11 months ago)
- Topics: amazon-web-services, automation, aws, efs, filesystem, infrastructure-as-code, nfs, terraform
- Language: HCL
- Size: 3.91 KB
- Stars: 0
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Terraform AWS EFS module
========================
Create a EFS file system and mount targets
Example
-------
```
module "efs" {
source = "Aplyca/efs/aws"
name = "EFS file system"
vpc_id = "vpc-ssfe2j4h"
subnets = ["subnet-d03nf8n6"]
efs_transition_to_ia = "AFTER_14_DAYS"
}
```