You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We want to specify a group of users, rather than individual users, as a parameter for who should have access to a vault.
e.g. given the group 'vault-administrators', which contains users 'foo, bar, baz' we'd like to be able to specify in knife.rb:
# In knife.rb
knife[:vault_admins] = 'vault-administrators'
# Or, run as a command
knife vault update my_awesome_vault awesome_vault_item -A vault-administrators
Instead of what we need to do today:
# In knife.rb
knife[:vault_admins] = [ 'foo', 'bar', 'baz' ]`
# Or, run as a command
knife vault update my_awesome_vault awesome_vault_item -A 'foo,bar,baz'
This would greatly simplify configuration for us; instead of needing to keep track of what the current admin list is everywhere we use knife, we could manage it in one place on the chef server.
The text was updated successfully, but these errors were encountered:
We want to specify a group of users, rather than individual users, as a parameter for who should have access to a vault.
e.g. given the group 'vault-administrators', which contains users 'foo, bar, baz' we'd like to be able to specify in knife.rb:
Instead of what we need to do today:
This would greatly simplify configuration for us; instead of needing to keep track of what the current admin list is everywhere we use knife, we could manage it in one place on the chef server.
The text was updated successfully, but these errors were encountered: