File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 34
34
uses : ./
35
35
with :
36
36
vault_server : https://vault.arrakis.se:8200
37
- oidc_backend : github-oidc
37
+ oidc_backend_path : github-oidc
38
38
oidc_role : cert-action-user
39
- ssh_backend : arrakis/ssh2
39
+ ssh_backend_path : arrakis/ssh2
40
40
ssh_role : cert-action-cert
41
41
42
42
- name : Examine generated certificate
48
48
with :
49
49
vault_server : https://vault.arrakis.se:8200
50
50
jwt_audience : a-test-audience
51
- oidc_backend : github-oidc
51
+ oidc_backend_path : github-oidc
52
52
oidc_role : cert-action-at-user
53
- ssh_backend : arrakis/ssh2
53
+ ssh_backend_path : arrakis/ssh2
54
54
ssh_role : cert-action-at-cert
55
55
56
56
- name : Examine second generated certificate
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ jobs:
19
19
- name : Generate SSH client certificate
20
20
if : github.ref == 'refs/heads/main'
21
21
id : ssh_cert
22
- uses : andreaso/vault-oidc-ssh-cert-action@v0.9
22
+ uses : andreaso/vault-oidc-ssh-cert-action@v0.10
23
23
with :
24
24
vault_server : https://vault.example.com:8200
25
- oidc_backend : github-oidc
25
+ oidc_backend_path : github-oidc
26
26
oidc_role : example-user
27
- ssh_backend : ssh-client-ca
27
+ ssh_backend_path : ssh-client-ca
28
28
ssh_role : github-actions-example
29
29
30
30
- name : Deploy site
Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ inputs:
8
8
vault_server :
9
9
description : URL of the Vault server
10
10
required : true
11
- oidc_backend :
11
+ oidc_backend_path :
12
12
description : Path to Vault's GitHub configured JWT/OIDC backend
13
13
required : true
14
14
oidc_role :
15
15
description : Name of the Vault server OIDC role to use
16
16
required : true
17
- ssh_backend :
17
+ ssh_backend_path :
18
18
description : Path to Vault's SSH CA backend
19
19
required : true
20
20
ssh_role :
59
59
env :
60
60
ACTION_PATH : ${{ github.action_path }}
61
61
AUDIENCE : ${{ steps.determine.outputs.audience }}
62
- BACKEND : ${{ inputs.oidc_backend }}
62
+ BACKEND : ${{ inputs.oidc_backend_path }}
63
63
ROLE : ${{ inputs.oidc_role }}
64
64
VAULT_SERVER : ${{ inputs.vault_server }}
65
65
71
71
ACTION_PATH : ${{ github.action_path }}
72
72
VAULT_SERVER : ${{ inputs.vault_server }}
73
73
VAULT_TOKEN : ${{ steps.vault_auth.outputs.vault_token }}
74
- SSH_BACKEND : ${{ inputs.ssh_backend }}
74
+ SSH_BACKEND : ${{ inputs.ssh_backend_path }}
75
75
SSH_ROLE : ${{ inputs.ssh_role }}
76
76
TMPDIR : ${{ runner.temp }}
77
77
You can’t perform that action at this time.
0 commit comments