chore: set verified to false and bump to 1.0.1 (#473)

## Description

Removes verified status from nexus module.
<!-- Briefly describe what this PR does and why -->

## Type of Change

- [ ] New module
- [ ] Bug fix
- [ ] Feature/enhancement
- [ ] Documentation
- [X] Other

## Module Information

<!-- Delete this section if not applicable -->

**Path:** `registry/mavrickrishi/modules/nexus-repository`  
**New version:** `v1.0.1`  
**Breaking change:** [ ] Yes [X] No

## Testing & Validation

- [X] Tests pass (`bun test`)
- [X] Code formatted (`bun run fmt`)
- [X] Changes tested locally
This commit is contained in:
DevCats 2025-10-09 08:13:06 -05:00 committed by GitHub
parent ccdca6daf5
commit d516aff908
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@
display_name: Nexus Repository display_name: Nexus Repository
description: Configure package managers to use Sonatype Nexus Repository for Maven, npm, PyPI, and Docker registries. description: Configure package managers to use Sonatype Nexus Repository for Maven, npm, PyPI, and Docker registries.
icon: ../../../../.icons/nexus-repository.svg icon: ../../../../.icons/nexus-repository.svg
verified: true verified: false
tags: [integration, nexus-repository, maven, npm, pypi, docker] tags: [integration, nexus-repository, maven, npm, pypi, docker]
--- ---
@ -13,7 +13,7 @@ Configure package managers (Maven, npm, Go, PyPI, Docker) to use [Sonatype Nexus
```tf ```tf
module "nexus_repository" { module "nexus_repository" {
source = "registry.coder.com/mavrickrishi/nexus-repository/coder" source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
version = "1.0.0" version = "1.0.1"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
nexus_url = "https://nexus.example.com" nexus_url = "https://nexus.example.com"
nexus_password = var.nexus_api_token nexus_password = var.nexus_api_token
@ -43,7 +43,7 @@ module "nexus_repository" {
```tf ```tf
module "nexus_repository" { module "nexus_repository" {
source = "registry.coder.com/mavrickrishi/nexus-repository/coder" source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
version = "1.0.0" version = "1.0.1"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
nexus_url = "https://nexus.example.com" nexus_url = "https://nexus.example.com"
nexus_password = var.nexus_api_token nexus_password = var.nexus_api_token
@ -58,7 +58,7 @@ module "nexus_repository" {
```tf ```tf
module "nexus_repository" { module "nexus_repository" {
source = "registry.coder.com/mavrickrishi/nexus-repository/coder" source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
version = "1.0.0" version = "1.0.1"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
nexus_url = "https://nexus.example.com" nexus_url = "https://nexus.example.com"
nexus_password = var.nexus_api_token nexus_password = var.nexus_api_token
@ -73,7 +73,7 @@ module "nexus_repository" {
```tf ```tf
module "nexus_repository" { module "nexus_repository" {
source = "registry.coder.com/mavrickrishi/nexus-repository/coder" source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
version = "1.0.0" version = "1.0.1"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
nexus_url = "https://nexus.example.com" nexus_url = "https://nexus.example.com"
nexus_password = var.nexus_api_token nexus_password = var.nexus_api_token
@ -88,7 +88,7 @@ module "nexus_repository" {
```tf ```tf
module "nexus_repository" { module "nexus_repository" {
source = "registry.coder.com/mavrickrishi/nexus-repository/coder" source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
version = "1.0.0" version = "1.0.1"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
nexus_url = "https://nexus.example.com" nexus_url = "https://nexus.example.com"
nexus_password = var.nexus_api_token nexus_password = var.nexus_api_token
@ -103,7 +103,7 @@ module "nexus_repository" {
```tf ```tf
module "nexus_repository" { module "nexus_repository" {
source = "registry.coder.com/mavrickrishi/nexus-repository/coder" source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
version = "1.0.0" version = "1.0.1"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
nexus_url = "https://nexus.example.com" nexus_url = "https://nexus.example.com"
nexus_password = var.nexus_api_token nexus_password = var.nexus_api_token
@ -118,7 +118,7 @@ module "nexus_repository" {
```tf ```tf
module "nexus_repository" { module "nexus_repository" {
source = "registry.coder.com/mavrickrishi/nexus-repository/coder" source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
version = "1.0.0" version = "1.0.1"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
nexus_url = "https://nexus.example.com" nexus_url = "https://nexus.example.com"
nexus_username = "custom-user" nexus_username = "custom-user"
@ -134,7 +134,7 @@ module "nexus_repository" {
```tf ```tf
module "nexus_repository" { module "nexus_repository" {
source = "registry.coder.com/mavrickrishi/nexus-repository/coder" source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
version = "1.0.0" version = "1.0.1"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
nexus_url = "https://nexus.example.com" nexus_url = "https://nexus.example.com"
nexus_password = var.nexus_api_token nexus_password = var.nexus_api_token