Skip to content

Commit d516aff

Browse files
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
1 parent ccdca6d commit d516aff

File tree

1 file changed

+9
-9
lines changed
  • registry/mavrickrishi/modules/nexus-repository

1 file changed

+9
-9
lines changed

registry/mavrickrishi/modules/nexus-repository/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
display_name: Nexus Repository
33
description: Configure package managers to use Sonatype Nexus Repository for Maven, npm, PyPI, and Docker registries.
44
icon: ../../../../.icons/nexus-repository.svg
5-
verified: true
5+
verified: false
66
tags: [integration, nexus-repository, maven, npm, pypi, docker]
77
---
88

@@ -13,7 +13,7 @@ Configure package managers (Maven, npm, Go, PyPI, Docker) to use [Sonatype Nexus
1313
```tf
1414
module "nexus_repository" {
1515
source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
16-
version = "1.0.0"
16+
version = "1.0.1"
1717
agent_id = coder_agent.example.id
1818
nexus_url = "https://nexus.example.com"
1919
nexus_password = var.nexus_api_token
@@ -43,7 +43,7 @@ module "nexus_repository" {
4343
```tf
4444
module "nexus_repository" {
4545
source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
46-
version = "1.0.0"
46+
version = "1.0.1"
4747
agent_id = coder_agent.example.id
4848
nexus_url = "https://nexus.example.com"
4949
nexus_password = var.nexus_api_token
@@ -58,7 +58,7 @@ module "nexus_repository" {
5858
```tf
5959
module "nexus_repository" {
6060
source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
61-
version = "1.0.0"
61+
version = "1.0.1"
6262
agent_id = coder_agent.example.id
6363
nexus_url = "https://nexus.example.com"
6464
nexus_password = var.nexus_api_token
@@ -73,7 +73,7 @@ module "nexus_repository" {
7373
```tf
7474
module "nexus_repository" {
7575
source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
76-
version = "1.0.0"
76+
version = "1.0.1"
7777
agent_id = coder_agent.example.id
7878
nexus_url = "https://nexus.example.com"
7979
nexus_password = var.nexus_api_token
@@ -88,7 +88,7 @@ module "nexus_repository" {
8888
```tf
8989
module "nexus_repository" {
9090
source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
91-
version = "1.0.0"
91+
version = "1.0.1"
9292
agent_id = coder_agent.example.id
9393
nexus_url = "https://nexus.example.com"
9494
nexus_password = var.nexus_api_token
@@ -103,7 +103,7 @@ module "nexus_repository" {
103103
```tf
104104
module "nexus_repository" {
105105
source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
106-
version = "1.0.0"
106+
version = "1.0.1"
107107
agent_id = coder_agent.example.id
108108
nexus_url = "https://nexus.example.com"
109109
nexus_password = var.nexus_api_token
@@ -118,7 +118,7 @@ module "nexus_repository" {
118118
```tf
119119
module "nexus_repository" {
120120
source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
121-
version = "1.0.0"
121+
version = "1.0.1"
122122
agent_id = coder_agent.example.id
123123
nexus_url = "https://nexus.example.com"
124124
nexus_username = "custom-user"
@@ -134,7 +134,7 @@ module "nexus_repository" {
134134
```tf
135135
module "nexus_repository" {
136136
source = "registry.coder.com/mavrickrishi/nexus-repository/coder"
137-
version = "1.0.0"
137+
version = "1.0.1"
138138
agent_id = coder_agent.example.id
139139
nexus_url = "https://nexus.example.com"
140140
nexus_password = var.nexus_api_token

0 commit comments

Comments
 (0)