{"id":20655056,"url":"https://github.com/devops-ia/terraform-nexus-script","last_synced_at":"2025-03-09T22:10:09.670Z","repository":{"id":223275896,"uuid":"759789736","full_name":"devops-ia/terraform-nexus-script","owner":"devops-ia","description":"Terraform module for create Nexus Script","archived":false,"fork":false,"pushed_at":"2025-03-04T09:03:00.000Z","size":46,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-04T10:20:31.780Z","etag":null,"topics":["nexus","nexus-script","terraform","terraform-module"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/modules/devops-ia/script/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-19T10:40:59.000Z","updated_at":"2025-03-04T09:02:56.000Z","dependencies_parsed_at":"2024-08-07T11:40:44.267Z","dependency_job_id":"f336719a-c04e-4b2d-b9f2-24e799dd5d05","html_url":"https://github.com/devops-ia/terraform-nexus-script","commit_stats":null,"previous_names":["terraform-nexus-modules/terraform-nexus-script","devops-ia/terraform-nexus-script"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devops-ia%2Fterraform-nexus-script","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devops-ia%2Fterraform-nexus-script/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devops-ia%2Fterraform-nexus-script/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devops-ia%2Fterraform-nexus-script/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devops-ia","download_url":"https://codeload.github.com/devops-ia/terraform-nexus-script/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-script","terraform","terraform-module"],"created_at":"2024-11-16T18:08:42.104Z","updated_at":"2025-03-09T22:10:09.650Z","avatar_url":"https://github.com/devops-ia.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nexus Script\n\nThis module allows you to create **Nexus Script as a global resource** and **individual Nexus Script resources.** For individual examples, see the usage snippets and [examples](https://github.com/devops-ia/terraform-nexus-script/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`nexus-script`:\n\n```hcl\nmodule \"nexus_script\" {\n  source  = \"devops-ia/script/nexus/\"\n\n  nexus_script = [\n    {\n      name    = \"create-repo-pypi-internal\"\n      type    = \"groovy\"\n      content = \"repository.createPyPiHosted('pypi-internal')\"\n    }\n  ]\n}\n```\n\n## Individual module usage\n\n`nexus-script`:\n\n```hcl\nmodule \"nexus_script\" {\n  source  = \"devops-ia/script/nexus//modules/nexus-script\"\n\n  name    = \"create-repo-pypi-internal\"\n  type    = \"groovy\"\n  content = \"repository.createPyPiHosted('pypi-internal')\"\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_script\"\u003e\u003c/a\u003e [nexus\\_script](#module\\_nexus\\_script) | ./modules/nexus-script | n/a |\n\n### Resources\n\nNo resources.\n\n### Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"input_nexus_script\"\u003e\u003c/a\u003e [nexus\\_script](#input\\_nexus\\_script) | value | \u003cpre\u003elist(object({\u003cbr\u003e    name    = string\u003cbr\u003e    type    = optional(string)\u003cbr\u003e    content = string\u003cbr\u003e  }))\u003c/pre\u003e | `[]` | no |\n\n### Outputs\n\n| Name | Description |\n|------|-------------|\n| \u003ca name=\"output_script_name\"\u003e\u003c/a\u003e [script\\_name](#output\\_script\\_name) | The name of the script. |\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-script/graphs/contributors).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevops-ia%2Fterraform-nexus-script","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevops-ia%2Fterraform-nexus-script","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevops-ia%2Fterraform-nexus-script/lists"}