An open API service indexing awesome lists of open source software.

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

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"

}
```