In the recipe default.rb on line 76 loads the license from the encrypted data bag. license_details = Chef::DataBagItem.load(node['splunkstorm']['license_databag'], node['splunkstorm']['license_databag_item']) Shouldn't this use EncryptedDataBagItem instead? Something like this: license_details = Chef::EncryptedDataBagItem.load(node['splunkstorm']['license_databag'], node['splunkstorm']['license_databag_item'])
In the recipe default.rb on line 76 loads the license from the encrypted data bag.
license_details = Chef::DataBagItem.load(node['splunkstorm']['license_databag'], node['splunkstorm']['license_databag_item'])
Shouldn't this use EncryptedDataBagItem instead? Something like this:
license_details = Chef::EncryptedDataBagItem.load(node['splunkstorm']['license_databag'], node['splunkstorm']['license_databag_item'])