{"id":19956985,"url":"https://github.com/anmolnagpal/terraform-aws-efs","last_synced_at":"2025-11-09T13:03:05.754Z","repository":{"id":94619383,"uuid":"158828601","full_name":"anmolnagpal/terraform-aws-efs","owner":"anmolnagpal","description":null,"archived":false,"fork":false,"pushed_at":"2018-11-23T12:17:28.000Z","size":6,"stargazers_count":2,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-07T21:12:22.533Z","etag":null,"topics":["aws","devops","efs","module","terraform","terraform-module"],"latest_commit_sha":null,"homepage":null,"language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anmolnagpal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-11-23T12:15:54.000Z","updated_at":"2021-02-09T08:52:04.000Z","dependencies_parsed_at":"2023-03-21T13:32:46.263Z","dependency_job_id":null,"html_url":"https://github.com/anmolnagpal/terraform-aws-efs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anmolnagpal%2Fterraform-aws-efs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anmolnagpal%2Fterraform-aws-efs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anmolnagpal%2Fterraform-aws-efs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anmolnagpal%2Fterraform-aws-efs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anmolnagpal","download_url":"https://codeload.github.com/anmolnagpal/terraform-aws-efs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252259294,"owners_count":21719657,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","devops","efs","module","terraform","terraform-module"],"created_at":"2024-11-13T01:36:16.524Z","updated_at":"2025-11-09T13:03:05.683Z","avatar_url":"https://github.com/anmolnagpal.png","language":"HCL","funding_links":["https://www.paypal.me/anmolnagpal"],"categories":[],"sub_categories":[],"readme":"\u003e Terraform module for simplified management of Shared Storage servers using Amazon EFS\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"LICENSE.md\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square\" alt=\"Software License\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://www.paypal.me/anmolnagpal\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/PayPal-Buy%20Me%20A%20BEER-blue.svg?style=flat-squares\" alt=\"Donate\"\u003e\n    \u003c/a\u003e\n  \u003c/p\u003e\n\u003c/p\u003e\n\n## Usage\n\nInclude this repository as a module in your existing terraform code:\n\n```hcl\nmodule \"efs\" {\n  source     = \"git::https://github.com/anmolnagpal/terraform-aws-efs.git?ref=master\"\n  managedby  = \"global\"\n  name       = \"app\"\n  env        = \"prod\"\n  attributes = [\"efs\"]\n\n  aws_region         = \"${var.aws_region}\"\n  vpc_id             = \"${var.vpc_id}\"\n  subnets            = \"${var.private_subnets}\"\n  availability_zones = [\"${var.availability_zones}\"]\n  security_groups    = [\"${var.security_group_id}\"]\n\n}\n```\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|:----:|:-----:|:-----:|\n| attributes | Additional attributes (e.g. `policy` or `role`) | list | `\u003clist\u003e` | no |\n| availability_zones | Availability Zone IDs | list | - | yes |\n| aws_region | AWS region ID | string | - | yes |\n| delimiter | Delimiter to be used between `name`, `namespace`, `stage`, etc. | string | `-` | no |\n| name | Name (_e.g._ `app` or `wordpress`) | string | `app` | no |\n| namespace | Namespace (_e.g._ `cp` or `anmolnagpal`) | string | `global` | no |\n| security_groups | AWS security group IDs to allow to connect to the EFS | list | - | yes |\n| stage | Stage (_e.g._ `prod`, `dev`, `staging`) | string | `default` | no |\n| subnets | AWS subnet IDs | list | - | yes |\n| tags | Additional tags (e.g. `map('BusinessUnit','XYZ')`) | map | `\u003cmap\u003e` | no |\n| vpc_id | AWS VPC ID | string | - | yes |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| dns_name | DNS name |\n| id | EFS id |\n| mount_target_ids | List of IDs of the EFS mount targets (one per Availability Zone) |\n| mount_target_ips | List of IPs of the EFS mount targets (one per Availability Zone) |\n\n\n- Refrence :\n    - https://aws.amazon.com/efs\n    - https://github.com/aws/efs-utils\n\n## 👬 Contribution\n- Open pull request with improvements\n- Discuss ideas in issues\n\n- Reach out with any feedback [![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/anmol_nagpal.svg?style=social\u0026label=Follow%20%40anmol_nagpal)](https://twitter.com/anmol_nagpal)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanmolnagpal%2Fterraform-aws-efs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanmolnagpal%2Fterraform-aws-efs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanmolnagpal%2Fterraform-aws-efs/lists"}