{"id":20655057,"url":"https://github.com/devops-ia/terraform-nexus-routing","last_synced_at":"2025-03-09T22:10:09.443Z","repository":{"id":252033615,"uuid":"759314324","full_name":"devops-ia/terraform-nexus-routing","owner":"devops-ia","description":"Terraform module for create Nexus Routing","archived":false,"fork":false,"pushed_at":"2025-03-04T09:02:52.000Z","size":43,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-04T10:20:27.345Z","etag":null,"topics":["nexus","nexus-routing","terraform","terraform-module"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/modules/devops-ia/routing/nexus","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}},"created_at":"2024-02-18T08:38:43.000Z","updated_at":"2025-03-04T09:02:49.000Z","dependencies_parsed_at":"2025-01-17T11:12:51.991Z","dependency_job_id":"b542258a-0b6e-44af-911b-19bbf50da451","html_url":"https://github.com/devops-ia/terraform-nexus-routing","commit_stats":null,"previous_names":["devops-ia/terraform-nexus-routing"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devops-ia%2Fterraform-nexus-routing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devops-ia%2Fterraform-nexus-routing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devops-ia%2Fterraform-nexus-routing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devops-ia%2Fterraform-nexus-routing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devops-ia","download_url":"https://codeload.github.com/devops-ia/terraform-nexus-routing/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242756870,"owners_count":20180206,"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":["nexus","nexus-routing","terraform","terraform-module"],"created_at":"2024-11-16T18:08:42.127Z","updated_at":"2025-03-09T22:10:09.423Z","avatar_url":"https://github.com/devops-ia.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nexus Routing\n\nThis module allows you to create **Nexus Routing as a global resource** and **individual Nexus Routing resources.** For individual examples, see the usage snippets and [examples](https://github.com/devops-ia/terraform-nexus-routing/tree/main/examples).\n\n## Provider\nYou need use a [Nexus provider](https://registry.terraform.io/providers/datadrivers/nexus/latest/docs).\n```hcl\nprovider \"nexus\" {\n  insecure = true\n  password = \"admin123\"\n  url      = \"https://127.0.0.1:8080\"\n  username = \"admin\"\n}\n```\n\n## Root module usage\n\n`nexus-routing`:\n\n```hcl\nmodule \"nexus_routing\" {\n  source  = \"devops-ia/routing/nexus\"\n\n nexus_routing_rule = [\n    {\n      name        = \"stop-leaks\"\n      description = \"Prevent requests of internal names\"\n      mode        = \"BLOCK\"\n      matchers = [\n        \"^/com/example/.*\",\n        \"^/org/example/.*\",\n      ]\n    },\n  ]\n}\n```\n\n## Individual module usage\n\n`nexus-routing-rule`:\n\n```hcl\nmodule \"nexus_routing_rule\" {\n  source  = \"devops-ia/routing/nexus//modules/nexus-routing-rule\"\n\n  name        = \"stop-leaks\"\n  description = \"Prevent requests of internal names\"\n  mode        = \"BLOCK\"\n  matchers = [\n    \"^/com/example/.*\",\n    \"^/org/example/.*\",\n  ]\n}\n```\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| \u003ca name=\"requirement_nexus\"\u003e\u003c/a\u003e [nexus](#requirement\\_nexus) | \u003e= 2.0.0 |\n\n### Providers\n\nNo providers.\n\n### Modules\n\n| Name | Source | Version |\n|------|--------|---------|\n| \u003ca name=\"module_nexus_routing_rule\"\u003e\u003c/a\u003e [nexus\\_routing\\_rule](#module\\_nexus\\_routing\\_rule) | ./modules/nexus-routing-rule | n/a |\n\n### Resources\n\nNo resources.\n\n### Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"input_nexus_routing_rule\"\u003e\u003c/a\u003e [nexus\\_routing\\_rule](#input\\_nexus\\_routing\\_rule) | Routing Rule. | \u003cpre\u003elist(object({\u003cbr\u003e    name        = string\u003cbr\u003e    matchers    = set(string)\u003cbr\u003e    description = optional(string)\u003cbr\u003e    mode        = optional(string)\u003cbr\u003e  }))\u003c/pre\u003e | `[]` | no |\n\n### Outputs\n\n| Name | Description |\n|------|-------------|\n| \u003ca name=\"output_routing_rule_name\"\u003e\u003c/a\u003e [routing\\_rule\\_name](#output\\_routing\\_rule\\_name) | The name of the routing rule. |\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-nexus-routing/graphs/contributors).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevops-ia%2Fterraform-nexus-routing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevops-ia%2Fterraform-nexus-routing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevops-ia%2Fterraform-nexus-routing/lists"}