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
This commit is contained in:
Austen Bruhn 2025-11-15 16:54:36 -07:00
parent fdaaba7378
commit c22fb8bcdc
7 changed files with 17 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

View File

@ -0,0 +1,11 @@
---
display_name: "Austen Bruhn"
bio: "Software engineer and cloud infrastructure enthusiast"
avatar: "./.images/avatar.png"
github: "ausbru87"
status: "community"
---
# Austen Bruhn
Software engineer and cloud infrastructure enthusiast, contributing modules to help developers work more efficiently with cloud services.

View File

@ -13,7 +13,7 @@ Automatically install the [AWS Command Line Interface (CLI)](https://aws.amazon.
```tf
module "aws-cli" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/aws-cli/coder"
source = "registry.coder.com/modules/ausbru87/aws-cli"
version = "1.0.0"
agent_id = coder_agent.example.id
}
@ -37,7 +37,7 @@ Install the latest version of AWS CLI:
```tf
module "aws-cli" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/aws-cli/coder"
source = "registry.coder.com/modules/ausbru87/aws-cli"
version = "1.0.0"
agent_id = coder_agent.example.id
}
@ -50,7 +50,7 @@ Install a specific version of AWS CLI for consistency across your team:
```tf
module "aws-cli" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/aws-cli/coder"
source = "registry.coder.com/modules/ausbru87/aws-cli"
version = "1.0.0"
agent_id = coder_agent.example.id
@ -68,7 +68,7 @@ Install AWS CLI to a custom directory (useful when you don't have sudo access):
```tf
module "aws-cli" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/aws-cli/coder"
source = "registry.coder.com/modules/ausbru87/aws-cli"
version = "1.0.0"
agent_id = coder_agent.example.id
install_directory = "/home/coder/.local"
@ -82,7 +82,7 @@ Enable GPG signature verification for enhanced security:
```tf
module "aws-cli" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/aws-cli/coder"
source = "registry.coder.com/modules/ausbru87/aws-cli"
version = "1.0.0"
agent_id = coder_agent.example.id
verify_signature = true
@ -96,7 +96,7 @@ Explicitly set the architecture (usually auto-detected):
```tf
module "aws-cli" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/aws-cli/coder"
source = "registry.coder.com/modules/ausbru87/aws-cli"
version = "1.0.0"
agent_id = coder_agent.example.id
architecture = "aarch64" # or "x86_64"