I’m using terraform to generate a user’s access and secret key, and then using that information in ansible to provision an installation of some other software.
using the suggested doc to aquire this with
terraform output encrypted_secret | base64 --decode | keybase pgp decrypt
…usually result in me having to type in the keybase password on the next line.
I’m wondering what is the best approach to automating this operation to aquire that data. I know ansible has the expect: command, but I wanted to see if there are any better recommended ways in decrypting this information.