{"id":18746053,"url":"https://github.com/fscm/terraform-module-aws-s3","last_synced_at":"2025-11-23T16:30:18.168Z","repository":{"id":202050359,"uuid":"179554128","full_name":"fscm/terraform-module-aws-s3","owner":"fscm","description":"Terraform Module to create a S3 Endpoint Service Association.","archived":false,"fork":false,"pushed_at":"2022-01-03T16:15:12.000Z","size":8,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-28T20:27:04.670Z","etag":null,"topics":["aws","s3","terraform","terraform-module"],"latest_commit_sha":null,"homepage":null,"language":"HCL","has_issues":false,"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/fscm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2019-04-04T18:30:16.000Z","updated_at":"2022-01-03T16:15:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"1cd223d3-5713-4a26-ac6e-a3956a99792e","html_url":"https://github.com/fscm/terraform-module-aws-s3","commit_stats":null,"previous_names":["fscm/terraform-module-aws-s3"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fterraform-module-aws-s3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fterraform-module-aws-s3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fterraform-module-aws-s3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fterraform-module-aws-s3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fscm","download_url":"https://codeload.github.com/fscm/terraform-module-aws-s3/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239627546,"owners_count":19670910,"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","s3","terraform","terraform-module"],"created_at":"2024-11-07T16:20:40.736Z","updated_at":"2025-11-23T16:30:18.073Z","avatar_url":"https://github.com/fscm.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# S3 Terraform Module\n\nA Terraform module to create a S3 endpoint service association to a VPC\n\n## Prerequisites\n\nTerraform and AWS Command Line Interface tools need to be installed on your\nlocal computer.\n\n### Terraform\n\nTerraform version 0.10.3 or higher is required.\n\nTerraform installation instructions can be found\n[here](https://www.terraform.io/intro/getting-started/install.html).\n\n### AWS Command Line Interface\n\nAWS Command Line Interface installation instructions can be found\n[here](http://docs.aws.amazon.com/cli/latest/userguide/installing.html).\n\n## Module Input Variables\n\n- `private_route_tables` - List of the private Route Table Identifiers to be associated with the S3 Endpoint. *[default value: []]*\n- `public_route_tables` - List of the public Route Table Identifiers to be associated with the S3 Endpoint. *[default value: []]*\n- `vpc_id` - The ID of the VPC in which the S3 endpoint will be used. *[default value: '']*\n\n## Usage\n\nSimple example:\n\n```hcl\nmodule \"my_s3\" {\n  source               = \"github.com/fscm/terraform-module-aws-s3\"\n  private_route_tables = [\"rtb-012345a67b8901234\"]\n  public_route_tables  = [\"rtb-0123a456b7890cdef\"]\n  vpc_id               = \"vpc-0a12b345678cd9e0f\"\n}\n```\n\nExample with VPC:\n\n```hcl\nmodule \"my_vpc\" {\n  source                 = \"github.com/fscm/terraform-module-aws-vpc\"\n  cidr                   = \"10.0.0.0/16\"\n  domain                 = \"mydomain.tld\"\n  name                   = \"vpc\"\n  prefix                 = \"mycompany-\"\n  private_subnets_amount = \"3\"\n  public_subnets_amount  = \"3\"\n}\n\nmodule \"my_s3\" {\n  source               = \"github.com/fscm/terraform-module-aws-s3\"\n  private_route_tables = \"${module.my_vpc.private_route_table_id}\"\n  public_route_tables  = \"${module.my_vpc.public_route_table_id}\"\n  vpc_id               = \"${module.my_vpc.id}\"\n}\n```\n\n## Outputs\n\n- `id` - **[type: string]** The ID of the S3 endpoint.\n- `state` - **[type: string]** The state of the VPC endpoint.\n\n## Contributing\n\n1. Fork it!\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request\n\nPlease read the [CONTRIBUTING.md](CONTRIBUTING.md) file for more details on how\nto contribute to this project.\n\n## Versioning\n\nThis project uses [SemVer](http://semver.org/) for versioning. For the versions\navailable, see the [tags on this repository](https://github.com/fscm/terraform-module-aws-s3/tags).\n\n## Authors\n\n* **Frederico Martins** - [fscm](https://github.com/fscm)\n\nSee also the list of [contributors](https://github.com/fscm/terraform-module-aws-s3/contributors)\nwho participated in this project.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE)\nfile for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffscm%2Fterraform-module-aws-s3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffscm%2Fterraform-module-aws-s3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffscm%2Fterraform-module-aws-s3/lists"}