diff --git a/action.yml b/action.yml index 073f579..6f1d26e 100644 --- a/action.yml +++ b/action.yml @@ -36,6 +36,12 @@ inputs: description: 'The path to the Kubernetes service account secret' required: false default: '/var/run/secrets/kubernetes.io/serviceaccount/token' + username: + description: 'The username of the user to log in to Vault as. Available to both Userpass and LDAP auth methods' + required: false + password: + description: 'The password of the user to log in to Vault as. Available to both Userpass and LDAP auth methods' + required: false authPayload: description: 'The JSON payload to be sent to Vault when using a custom authentication method.' required: false diff --git a/integrationTests/basic/userpass_auth.test.js b/integrationTests/basic/userpass_auth.test.js index 9ab5171..a8a9933 100644 --- a/integrationTests/basic/userpass_auth.test.js +++ b/integrationTests/basic/userpass_auth.test.js @@ -34,7 +34,7 @@ describe('authenticate with userpass', () => { }, }); - // Enable approle + // Enable userpass try { await got(`${vaultUrl}/v1/sys/auth/userpass`, { method: 'POST',