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:
parent
fdaaba7378
commit
c22fb8bcdc
BIN
registry/ausbru87/.images/avatar.png
Normal file
BIN
registry/ausbru87/.images/avatar.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 KiB |
11
registry/ausbru87/README.md
Normal file
11
registry/ausbru87/README.md
Normal 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.
|
||||
@ -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"
|
||||
Loading…
x
Reference in New Issue
Block a user