-
-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add config support for Hashicorp Vault plugin #430
Conversation
manifests/params.pp
Outdated
@@ -316,6 +316,13 @@ | |||
$file_keystorage_keys = { } | |||
$file_keystorage_dir = "${framework_config['framework.var.dir']}/storage" | |||
|
|||
$vault_keystorage_prefix = 'rundeck' | |||
$vault_keystorage_url = 'https://vault.example.com' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please default to undef here
manifests/params.pp
Outdated
@@ -316,6 +316,13 @@ | |||
$file_keystorage_keys = { } | |||
$file_keystorage_dir = "${framework_config['framework.var.dir']}/storage" | |||
|
|||
$vault_keystorage_prefix = 'rundeck' | |||
$vault_keystorage_url = 'https://vault.example.com' | |||
$vault_keystorage_approle_approleid = '111111-222222-333333-44444-55555' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please default to undef here
manifests/params.pp
Outdated
$vault_keystorage_prefix = 'rundeck' | ||
$vault_keystorage_url = 'https://vault.example.com' | ||
$vault_keystorage_approle_approleid = '111111-222222-333333-44444-55555' | ||
$vault_keystorage_approle_secretid = 'aaaaaa-bbbbbbb-ccccccc-dddddd-eeeeee' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please default to undef here
Hi @linuxmail, thanks for the PR! Can you please take a look at the inline comments I did and also check the used email address in the commits? It isn't associated with your github account. |
…me minor lint fixes
Hi, I've added the fixes and looking later for other kind of stuff to do. Hopefully the mail address is also set on the Git repo :-) |
I had to set the Vault entries to Optional, otherwise Travis wasn't happy ("..expected String, got undef..." |
Thanks for the PR! |
Pull Request (PR) description
This PR adds support for the the Vault plugin, which can be used as key storage provider.
This Pull Request (PR) fixes the following issues
Fixes: #428