I have a modular input, which accepts AWS credentials while configuring input for the addon. In that secret key field is password type field. So after inputs are saved into input.conf, it creates a encrypted data for secret key and stored in password.conf.
this code to get decrypted data while processing events was working fine for the addon.
helper.get_arg('access_key')
but After the addon upgrade using addon builder V-4.X.X
the same code returning ***** instead of actual value.
what might be the issue? is something needs to do before upgrading?
or is there any other ways to get decrypted data from password.conf file?
... View more