Skip to content

Commit c22fb8b

Browse files
committed
Restructure AWS CLI module to personal namespace
- Create ausbru87 namespace with avatar and README - Move aws-cli module from registry/coder to registry/ausbru87 - Update all source paths to registry.coder.com/modules/ausbru87/aws-cli - Follows contribution guidelines for community modules
1 parent fdaaba7 commit c22fb8b

File tree

7 files changed

+17
-6
lines changed

7 files changed

+17
-6
lines changed
57.6 KB
Loading

registry/ausbru87/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
display_name: "Austen Bruhn"
3+
bio: "Software engineer and cloud infrastructure enthusiast"
4+
avatar: "./.images/avatar.png"
5+
github: "ausbru87"
6+
status: "community"
7+
---
8+
9+
# Austen Bruhn
10+
11+
Software engineer and cloud infrastructure enthusiast, contributing modules to help developers work more efficiently with cloud services.

registry/coder/modules/aws-cli/README.md renamed to registry/ausbru87/modules/aws-cli/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Automatically install the [AWS Command Line Interface (CLI)](https://aws.amazon.
1313
```tf
1414
module "aws-cli" {
1515
count = data.coder_workspace.me.start_count
16-
source = "registry.coder.com/coder/aws-cli/coder"
16+
source = "registry.coder.com/modules/ausbru87/aws-cli"
1717
version = "1.0.0"
1818
agent_id = coder_agent.example.id
1919
}
@@ -37,7 +37,7 @@ Install the latest version of AWS CLI:
3737
```tf
3838
module "aws-cli" {
3939
count = data.coder_workspace.me.start_count
40-
source = "registry.coder.com/coder/aws-cli/coder"
40+
source = "registry.coder.com/modules/ausbru87/aws-cli"
4141
version = "1.0.0"
4242
agent_id = coder_agent.example.id
4343
}
@@ -50,7 +50,7 @@ Install a specific version of AWS CLI for consistency across your team:
5050
```tf
5151
module "aws-cli" {
5252
count = data.coder_workspace.me.start_count
53-
source = "registry.coder.com/coder/aws-cli/coder"
53+
source = "registry.coder.com/modules/ausbru87/aws-cli"
5454
version = "1.0.0"
5555
agent_id = coder_agent.example.id
5656
@@ -68,7 +68,7 @@ Install AWS CLI to a custom directory (useful when you don't have sudo access):
6868
```tf
6969
module "aws-cli" {
7070
count = data.coder_workspace.me.start_count
71-
source = "registry.coder.com/coder/aws-cli/coder"
71+
source = "registry.coder.com/modules/ausbru87/aws-cli"
7272
version = "1.0.0"
7373
agent_id = coder_agent.example.id
7474
install_directory = "/home/coder/.local"
@@ -82,7 +82,7 @@ Enable GPG signature verification for enhanced security:
8282
```tf
8383
module "aws-cli" {
8484
count = data.coder_workspace.me.start_count
85-
source = "registry.coder.com/coder/aws-cli/coder"
85+
source = "registry.coder.com/modules/ausbru87/aws-cli"
8686
version = "1.0.0"
8787
agent_id = coder_agent.example.id
8888
verify_signature = true
@@ -96,7 +96,7 @@ Explicitly set the architecture (usually auto-detected):
9696
```tf
9797
module "aws-cli" {
9898
count = data.coder_workspace.me.start_count
99-
source = "registry.coder.com/coder/aws-cli/coder"
99+
source = "registry.coder.com/modules/ausbru87/aws-cli"
100100
version = "1.0.0"
101101
agent_id = coder_agent.example.id
102102
architecture = "aarch64" # or "x86_64"
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)