knife encrypt [create|update|remove|delete] [VAULT] [ITEM] [VALUES]
These are the commands that are used to take data in json format and encrypt that data into chef-vault style encrypted data bags in chef.
- Vault - This is the name of the vault in which to store the encrypted item. This is analogous to a chef data bag name
- Item - The name of the item going in to the vault. This is analogous to a chef data bag item id
- Values - This is the json clear text data to be stored in the vault encrypted. This is analogous to a chef data bag item data
Creat a vault called passwords and put an item called root in it with the given values for username and password encrypted for clients role:webserver and admins admin1 & admin2
knife encrypt create passwords root "{username: 'root', password: 'mypassword'}" -S "role:webserver" -A "admin1,admin2"
Creat a vault called passwords and put an item called root in it with the given values for username and password encrypted for clients role:webserver
knife encrypt create passwords root "{username: 'root', password: 'mypassword'}" -S "role:webserver"
Creat a vault called passwords and put an item called root in it with the given values for username and password encrypted for admins admin1 & admin2
knife encrypt create passwords root "{username: 'root', password: 'mypassword'}" -A "admin1,admin2"
Note: A JSON file can be used in place of specifying the values on the command line, see global options below for details
Update the values in username and password in the vault passwords and item root. Will overwrite existing values if values already exist!
knife encrypt update passwords root "{username: 'root', password: 'mypassword'}"
Update the values in username and password in the vault passwords and item root and add admin1 & admin2 to the encrypted admins. Will overwrite existing values if values already exist!
knife encrypt update passwords root "{username: 'root', password: 'mypassword'}" -A "admin1,admin2"
Update the values in username and password in the vault passwords and item root and add role:webserver to the encrypted clients. Will overwrite existing values if values already exist!
knife encrypt update passwords root "{username: 'root', password: 'mypassword'}" -S "role:webserver"
Update the values in username and password in the vault passwords and item root and add role:webserver to the encrypted clients and admin1 & admin2 to the encrypted admins. Will overwrite existing values if values already exist!
knife encrypt update passwords root "{username: 'root', password: 'mypassword'}" -S "role:webserver" -A "admin1,admin2"
Add admin1 & admin2 to encrypted admins for the vault passwords and item root.
knife encrypt update passwords root -A "admin1,admin2"
Add role:webserver to encrypted clients for the vault passwords and item root.
knife encrypt update passwords root -S "role:webserver"
Add admin1 & admin2 to encrypted admins and role:webserver to encrypted clients for the vault passwords and item root.
knife encrypt update passwords root -S "role:webserver" -A "admin1,admin2"
Note: A JSON file can be used in place of specifying the values on the command line, see global options below for details
Remove the values in username and password from the vault passwords and item root.
knife encrypt remove passwords root "{username: 'root', password: 'mypassword'}"
Remove the values in username and password from the vault passwords and item root and remove admin1 & admin2 from the encrypted admins.
knife encrypt remove passwords root "{username: 'root', password: 'mypassword'}" -A "admin1,admin2"
Remove the values in username and password from the vault passwords and item root and remove role:webserver from the encrypted clients.
knife encrypt remove passwords root "{username: 'root', password: 'mypassword'}" -S "role:webserver"
Remove the values in username and password from the vault passwords and item root and remove role:webserver from the encrypted clients and admin1 & admin2 from the encrypted admins.
knife encrypt remove passwords root "{username: 'root', password: 'mypassword'}" -S "role:webserver" -A "admin1,admin2"
Remove admin1 & admin2 from encrypted admins for the vault passwords and item root.
knife encrypt remove passwords root -A "admin1,admin2"
Remove role:webserver from encrypted clients for the vault passwords and item root.
knife encrypt remove passwords root -S "role:webserver"
Remove admin1 & admin2 from encrypted admins and role:webserver from encrypted clients for the vault passwords and item root.
knife encrypt remove passwords root -S "role:webserver" -A "admin1,admin2"
Delete the item root from the vault passwords
knife encrypt delete passwords root
Rotate the shared key for the vault passwords and item root. The shared key is that which is used for the chef encrypted data bag item
knife encrypt rotate secret passwords root
Short | Long | Description | Default | Valid Values |
---|---|---|---|---|
-S SEARCH | --search SEARCH | Chef Server SOLR Search Of Nodes | nil | |
-A ADMINS | --admins ADMINS | Chef clients or users to be vault admins, can be comma list | nil | |
-M MODE | --mode MODE | Chef mode to run in | solo | "solo", "client" |
-J FILE | --json FILE | json file to be used for values, will be merged with VALUES if VALUES is passed | nil |
knife decrypt [VAULT] [ITEM] [VALUES]
These are the commands that are used to take a chef-vault encrypted item and decrypt the requested values.
- Vault - This is the name of the vault in which to store the encrypted item. This is analogous to a chef data bag name
- Item - The name of the item going in to the vault. This is analogous to a chef data bag item id
- Values - This is a comma list of values to decrypt from the vault item. This is analogous to a list of hash keys.
Decrypt the username and password for the item root in the vault passwords.
knife decrypt passwords root "username, password"
Decrypt the contents for the item user_pem in the vault certs.
knife decrypt certs user_pem "contents"
Short | Long | Description | Default | Valid Values |
---|---|---|---|---|
-M MODE | --mode MODE | Chef mode to run in | solo | "solo", "client" |