Open
Description
I would like to suggest adding OCI Vault secrets lookup plugin based on oci_secrets_secret_bundle_facts module.
It is useful to interact with OCI Vault secrets by lookup plugin. The example use case is to store some passwords and sensitive variables like PKI private keys:
---
ansible_password: "{{ lookup('oci_secret', 'SECRED OCID', on_missing='error')}}"
db_password: "{{ lookup('oci_secret', 'SECRED OCID', on_missing='error')}}"
For example there is an AWS lookup plugin for such a service:
https://docs.ansible.com/ansible/latest/collections/amazon/aws/aws_secret_lookup.html