Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 298 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 298 Bytes

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"

}