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
{{ message }}
This repository was archived by the owner on Jan 13, 2025. It is now read-only.
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'])