This repository was archived by the owner on May 15, 2025. It is now read-only.
File tree 2 files changed +5
-5
lines changed 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ This module lets you authenticate with [Hashicorp Vault](https://www.vaultprojec
15
15
``` tf
16
16
module "vault" {
17
17
source = "registry.coder.com/modules/vault-jwt/coder"
18
- version = "1.0.19 "
18
+ version = "1.0.20 "
19
19
agent_id = coder_agent.example.id
20
20
vault_addr = "https://vault.example.com"
21
21
vault_jwt_role = "coder" # The Vault role to use for authentication
@@ -41,7 +41,7 @@ curl -H "X-Vault-Token: ${VAULT_TOKEN}" -X GET "${VAULT_ADDR}/v1/coder/secrets/d
41
41
``` tf
42
42
module "vault" {
43
43
source = "registry.coder.com/modules/vault-jwt/coder"
44
- version = "1.0.19 "
44
+ version = "1.0.20 "
45
45
agent_id = coder_agent.example.id
46
46
vault_addr = "https://vault.example.com"
47
47
vault_jwt_auth_path = "oidc"
@@ -56,7 +56,7 @@ data "coder_workspace_owner" "me" {}
56
56
57
57
module "vault" {
58
58
source = "registry.coder.com/modules/vault-jwt/coder"
59
- version = "1.0.19 "
59
+ version = "1.0.20 "
60
60
agent_id = coder_agent.example.id
61
61
vault_addr = "https://vault.example.com"
62
62
vault_jwt_role = data.coder_workspace_owner.me.groups[0]
@@ -68,7 +68,7 @@ module "vault" {
68
68
``` tf
69
69
module "vault" {
70
70
source = "registry.coder.com/modules/vault-jwt/coder"
71
- version = "1.0.19 "
71
+ version = "1.0.20 "
72
72
agent_id = coder_agent.example.id
73
73
vault_addr = "https://vault.example.com"
74
74
vault_jwt_role = "coder" # The Vault role to use for authentication
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ install() {
51
51
printf " Failed to determine the latest Vault version.\n"
52
52
return 1
53
53
fi
54
- VAULT_CLI_VERSION=$$ {VAULT_CLI_VERSION }
54
+ VAULT_CLI_VERSION=$$ {LATEST_VERSION }
55
55
fi
56
56
57
57
# Check if the vault CLI is installed and has the correct version
You can’t perform that action at this time.
0 commit comments