{"id":48211067,"url":"https://github.com/techservicesillinois/terraform-aws-efs","last_synced_at":"2026-04-04T18:48:32.937Z","repository":{"id":34893116,"uuid":"186689522","full_name":"techservicesillinois/terraform-aws-efs","owner":"techservicesillinois","description":"Provides an Amazon Elastic File System","archived":false,"fork":false,"pushed_at":"2025-03-27T03:13:41.000Z","size":14,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-03-27T04:23:45.022Z","etag":null,"topics":[],"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/techservicesillinois.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":"2019-05-14T19:47:01.000Z","updated_at":"2022-05-09T15:54:19.000Z","dependencies_parsed_at":"2025-03-27T04:22:14.729Z","dependency_job_id":"7029ba6b-8f35-4421-9b08-7bba95d65489","html_url":"https://github.com/techservicesillinois/terraform-aws-efs","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/techservicesillinois/terraform-aws-efs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techservicesillinois%2Fterraform-aws-efs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techservicesillinois%2Fterraform-aws-efs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techservicesillinois%2Fterraform-aws-efs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techservicesillinois%2Fterraform-aws-efs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/techservicesillinois","download_url":"https://codeload.github.com/techservicesillinois/terraform-aws-efs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techservicesillinois%2Fterraform-aws-efs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31409470,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-04-04T18:48:32.499Z","updated_at":"2026-04-04T18:48:32.914Z","avatar_url":"https://github.com/techservicesillinois.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# efs\n\n[![Terraform actions status](https://github.com/techservicesillinois/terraform-aws-efs/workflows/terraform/badge.svg)](https://github.com/techservicesillinois/terraform-aws-efs/actions)\n\nProvides an Elastic File System (EFS) volume with mount targets and security groups.\nThis module only supports mount targets within one VPC.\n\nExample Usage\n-----------------\n\n```hcl\nmodule \"volume\" {\n  source = \"git@github.com:techservicesillinois/terraform-aws-efs\"\n\n  name        = \"example\"\n  subnet_type = \"public\"\n  vpc         = \"vpc_name\"\n}\n```\nNote that this module uses a Terraform `lifecycle` block with `prevent_destroy`\nset to *true*, because the consequences of an accidental `terraform destroy` \non an EFS volume is to wipe out any data stored there.\n\nThe Terraform documentation states:\n\n* `prevent_destroy `(bool) - This flag provides extra protection against the\ndestruction of a given resource.\nWhen this flag is set to true, any plan that includes a destroy of this\nresource will return an error message.\n\nUnfortunately, Terraform does not support interpolations in the `lifecycle`\nblock, which means that the only way to intentionally destroy the affected\nresource is to do so in the AWS console.\n\nArgument Reference\n-----------------\n\nThe following arguments are supported:\n\n* `name` - (Required) The name of the EFS file system. This name is only\nused to identify the volume; a unique volume identifier provided by\nthe module will be used to mount the volume.\n\n* `vpc` - (Required) The name of the virtual private cloud to be\nassociated with the load balancer.\n\n* `subnet_type` - (Required) Subnet type (e.g., 'campus', 'private', 'public') for resource placement.\n\n* `encrypted` - (Optional) Encrypt data on volume at rest. Default: true.\n\n* `performance_mode` - (Optional) File system performance mode\n(generalPurpose or maxIO). Default: generalPurpose.\n\n* `tags` - (Optional) A mapping of tags to assign to the resource.\n\n* `throughput_mode` - (Optional) Throughput mode for the file system\n(bursting or provisioned). Default: bursting.\n\nAttributes Reference\n--------------------\n\nThe following attributes are exported:\n\n* `arn` - The ARN of the EFS volume.\n\n* `client_security_group` - The name of the security group created for\nclients of the EFS server.\n\n* `id` - The ID of the EFS volume.\n\n* `fqdn` - The the EFS volume's fully qualified domain name.\n\n* `mount_targets` - A map consisting of a key/value pair wherein each key represents an availability zones (AZ) paired with the EFS volume's mount target ID in the respective AZ.\n\n* `server_security_group` - The name of the security group created for\nthe EFS server.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechservicesillinois%2Fterraform-aws-efs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechservicesillinois%2Fterraform-aws-efs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechservicesillinois%2Fterraform-aws-efs/lists"}