{"id":18746049,"url":"https://github.com/fscm/terraform-module-aws-tags","last_synced_at":"2026-05-18T09:06:39.415Z","repository":{"id":202050425,"uuid":"235099973","full_name":"fscm/terraform-module-aws-tags","owner":"fscm","description":"Terraform Module to manage Tags on AWS resources.","archived":false,"fork":false,"pushed_at":"2022-01-03T16:15:16.000Z","size":10,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-06T20:49:27.218Z","etag":null,"topics":["aws","tags","terraform","terraform-aws","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":"2020-01-20T12:48:08.000Z","updated_at":"2022-01-03T16:15:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"e333ebd0-7018-4af4-b61d-0eb2134990fd","html_url":"https://github.com/fscm/terraform-module-aws-tags","commit_stats":null,"previous_names":["fscm/terraform-module-aws-tags"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/fscm/terraform-module-aws-tags","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fterraform-module-aws-tags","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fterraform-module-aws-tags/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fterraform-module-aws-tags/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fterraform-module-aws-tags/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fscm","download_url":"https://codeload.github.com/fscm/terraform-module-aws-tags/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fscm%2Fterraform-module-aws-tags/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33172173,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T05:43:36.989Z","status":"ssl_error","status_checked_at":"2026-05-18T05:43:19.133Z","response_time":71,"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":["aws","tags","terraform","terraform-aws","terraform-module"],"created_at":"2024-11-07T16:20:40.093Z","updated_at":"2026-05-18T09:06:39.383Z","avatar_url":"https://github.com/fscm.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AWS Tags Terraform Module\n\nA terraform module to manage Tags on AWS resources.\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 \u003e= 0.12.19 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- `environment` - **[type: string]** The environment name for the resource. *[default value: \"\"]*\n- `delimiter` - **[type: string]** The delimiter char that will be used to separate the fields in the resource id. *[default value: \"-\"]*\n- `id_tags_order` - **[type: list(string)]** The list of fields (in order) that will be used for the resource id. *[default value: \"['environment', 'namespace', 'name', 'stage']\"]*\n- `name` - **[type: string]** The main name for the resource. *[default value: \"default\"]*\n- `namespace` - **[type: string]** The namespace tag for the resource. *[default value: \"\"]*\n- `stage` - **[type: string]** The stage tag for the resource. *[default value: \"\"]*\n- `tags` - **[type: map(string)]** Map of tags (e.g.: '{name=test,environment=dev}'). *[default value: {}]*\n\n## Usage\n\n```hcl\nmodule \"my_aws_tags\" {\n  source        = \"github.com/fscm/terraform-module-aws-tags\"\n  environment   = \"prod\"\n  delimiter     = \"-\"\n  id_tags_order = [\"namespace\", \"name\", \"environment\", \"stage\"]\n  name          = \"default\"\n  namespace     = \"\"\n  stage         = \"\"\n  tags          = {}\n}\n\nresource \"aws_vpc\" \"my_aws_vpc\" {\n  cidr_block = \"10.0.0.0/16\"\n  tags       = module.my_aws_tags.tags\n}\n```\n\n## Outputs\n\n- `id` - **[type: string]** The ID of the resource.\n- `id_tags_order` - **[type: list(string)]** List of fields (in order) that were used for the resource id.\n- `tags` - **[type: map(string)]** A map with the tags.\n- `uuid` - **[type: string]** The UUID of the resource.\n- `uuid_short` - **[type: string]** The prefix of the resource's UUID.\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-tags/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-tags/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-tags","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffscm%2Fterraform-module-aws-tags","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffscm%2Fterraform-module-aws-tags/lists"}