{"id":14957826,"url":"https://github.com/devops-ia/terraform-global-naming","last_synced_at":"2026-02-07T15:16:43.941Z","repository":{"id":251916876,"uuid":"838849893","full_name":"devops-ia/terraform-global-naming","owner":"devops-ia","description":"Terraform module for global naming conventions","archived":false,"fork":false,"pushed_at":"2026-01-31T11:06:11.000Z","size":58,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-31T22:53:15.725Z","etag":null,"topics":["cloud","naming","naming-conventions","naming-pattern","terraform","terraform-module"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/modules/devops-ia/naming/global/latest","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/devops-ia.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-06T13:16:25.000Z","updated_at":"2026-01-31T11:06:15.000Z","dependencies_parsed_at":"2024-12-02T09:20:29.163Z","dependency_job_id":"a12f92ae-aab2-49d8-add9-3212cf2c04e4","html_url":"https://github.com/devops-ia/terraform-global-naming","commit_stats":{"total_commits":15,"total_committers":4,"mean_commits":3.75,"dds":0.5333333333333333,"last_synced_commit":"2ed8874d1df5fb17ea9d7624c8f972acbf63b2f2"},"previous_names":["devops-ia/terraform-global-naming"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/devops-ia/terraform-global-naming","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devops-ia%2Fterraform-global-naming","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devops-ia%2Fterraform-global-naming/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devops-ia%2Fterraform-global-naming/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devops-ia%2Fterraform-global-naming/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devops-ia","download_url":"https://codeload.github.com/devops-ia/terraform-global-naming/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devops-ia%2Fterraform-global-naming/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29198100,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T14:35:27.868Z","status":"ssl_error","status_checked_at":"2026-02-07T14:25:51.081Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["cloud","naming","naming-conventions","naming-pattern","terraform","terraform-module"],"created_at":"2024-09-24T13:15:40.570Z","updated_at":"2026-02-07T15:16:43.936Z","avatar_url":"https://github.com/devops-ia.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform global naming\n\nThis module helps you to keep consistency on your resources names for Terraform. For each resource that requires a name you can compose it using this module, keeping naming conventions consistent across your repositories.\n\n## Usage\n\n```hcl\nmodule \"aws_bucket_name\" {\n  source = \"devops-ia/naming/global\"\n\n  project     = \"myproject\"\n  environment = \"dev\"\n  resource    = \"s3\"\n  description = \"dummy\"\n}\n\noutput \"aws_bucket_name\" {\n  value = module.aws_bucket_name.name\n}\n\nresource \"aws_s3_bucket\" \"dummy\" {\n  bucket = module.aws_bucket_name.name\n\n  ...\n}\n```\n\nOutputs:\n\n```\nChanges to Outputs:\n  + aws_bucket_name = \"myproject-dev-s3-dummy\"\n```\n\nThe name is constructed by joining the non-empty parts (`prefix`, `project`, `environment`, `resource`, `location`, `description`, `suffix`) with the configured `delimiter`. Empty values are automatically omitted so there are no extraneous delimiters.\n\nLength validation happens at **plan time** — if the resulting name exceeds `limits` (default 25), Terraform will fail with a clear error message showing the actual name and length.\n\n## Terraform Docs\n\n## Requirements\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"requirement_terraform\"\u003e\u003c/a\u003e [terraform](#requirement\\_terraform) | \u003e= 1.3.0 |\n\n## Providers\n\nNo providers.\n\n## Modules\n\nNo modules.\n\n## Resources\n\nNo resources.\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"input_delimiter\"\u003e\u003c/a\u003e [delimiter](#input\\_delimiter) | Character used to join name parts (e.g. '-', '\\_', ''). | `string` | `\"-\"` | no |\n| \u003ca name=\"input_description\"\u003e\u003c/a\u003e [description](#input\\_description) | Optional description to add context to the resource name. | `string` | `\"\"` | no |\n| \u003ca name=\"input_environment\"\u003e\u003c/a\u003e [environment](#input\\_environment) | Environment name (e.g. dev, staging, prod). | `string` | n/a | yes |\n| \u003ca name=\"input_limits\"\u003e\u003c/a\u003e [limits](#input\\_limits) | Maximum allowed character length for the constructed resource name. | `number` | `25` | no |\n| \u003ca name=\"input_location\"\u003e\u003c/a\u003e [location](#input\\_location) | Optional location or region appended to the resource name. | `string` | `\"\"` | no |\n| \u003ca name=\"input_prefix\"\u003e\u003c/a\u003e [prefix](#input\\_prefix) | Optional prefix prepended to the resource name. | `string` | `\"\"` | no |\n| \u003ca name=\"input_project\"\u003e\u003c/a\u003e [project](#input\\_project) | Project name used as a component of the resource name. | `string` | n/a | yes |\n| \u003ca name=\"input_resource\"\u003e\u003c/a\u003e [resource](#input\\_resource) | Resource type identifier (e.g. vm, s3, rg). | `string` | n/a | yes |\n| \u003ca name=\"input_suffix\"\u003e\u003c/a\u003e [suffix](#input\\_suffix) | Optional suffix appended at the end of the resource name. | `string` | `\"\"` | no |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| \u003ca name=\"output_name\"\u003e\u003c/a\u003e [name](#output\\_name) | The constructed resource name. |\n| \u003ca name=\"output_total_length\"\u003e\u003c/a\u003e [total\\_length](#output\\_total\\_length) | Total character length of the constructed resource name. |\n\n## Authors\n\nModule is maintained by [DevOps IA](https://github.com/devops-ia) with help from [these awesome contributors](https://github.com/devops-ia/terraform-global-naming/graphs/contributors).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevops-ia%2Fterraform-global-naming","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevops-ia%2Fterraform-global-naming","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevops-ia%2Fterraform-global-naming/lists"}