Update Vault CLI download link to use architecture (#514)

## Description

The download command was downloading only the amd64 version,

## Type of Change

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

## Module Information

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

**Path:** `registry/[namespace]/modules/[module-name]`  
**New version:** `v1.0.0`  
**Breaking change:** [ ] Yes [ ] No

## Template Information

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

**Path:** `registry/[namespace]/templates/[template-name]`

## Testing & Validation

- [ ] Tests pass (`bun test`)
- [ ] Code formatted (`bun fmt`)
- [ ] Changes tested locally

## Related Issues

<!-- Link related issues or write "None" if not applicable -->
This commit is contained in:
Luis 2025-10-27 17:12:24 -05:00 committed by GitHub
parent d64851774b
commit 1a15ad650a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ variable "vault_token" {
module "vault" { module "vault" {
source = "registry.coder.com/coder/vault-token/coder" source = "registry.coder.com/coder/vault-token/coder"
version = "1.2.1" version = "1.2.2"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
vault_token = var.token # optional vault_token = var.token # optional
vault_addr = "https://vault.example.com" vault_addr = "https://vault.example.com"
@ -73,7 +73,7 @@ variable "vault_token" {
module "vault" { module "vault" {
source = "registry.coder.com/coder/vault-token/coder" source = "registry.coder.com/coder/vault-token/coder"
version = "1.2.1" version = "1.2.2"
agent_id = coder_agent.example.id agent_id = coder_agent.example.id
vault_addr = "https://vault.example.com" vault_addr = "https://vault.example.com"
vault_token = var.token vault_token = var.token

View File

@ -68,7 +68,7 @@ install() {
else else
printf "Upgrading Vault CLI from version %s to %s ...\n\n" "$${CURRENT_VERSION}" "${INSTALL_VERSION}" printf "Upgrading Vault CLI from version %s to %s ...\n\n" "$${CURRENT_VERSION}" "${INSTALL_VERSION}"
fi fi
fetch vault.zip "https://releases.hashicorp.com/vault/$${INSTALL_VERSION}/vault_$${INSTALL_VERSION}_linux_amd64.zip" fetch vault.zip "https://releases.hashicorp.com/vault/$${INSTALL_VERSION}/vault_$${INSTALL_VERSION}_linux_$${ARCH}.zip"
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
printf "Failed to download Vault.\n" printf "Failed to download Vault.\n"
return 1 return 1