Metadata-Version: 1.0
Name: ansible-modules-hashivault
Version: 2.3.1
Summary: Ansible Modules for Hashicorp Vault
Home-page: https://github.com/TerryHowe/ansible-modules-hashivault
Author: Terry Howe
Author-email: terrylhowe@example.com
License: UNKNOWN
Description: 
        
        Ansible modules for Hashicorp Vault.
        
        Usage
        -----
        
        The following example writes the giant secret with two values and then
        reads the fie value::
        
            ---
            - hosts: localhost
              tasks:
                - hashivault_write:
                    secret: giant
                    data:
                        foo: foe
                        fie: fum
                - hashivault_read:
                    secret: 'giant'
                    key: 'fie'
                  register: 'fie'
                - debug: msg="Value is {{fie.value}}"
        
        If you are not using the VAULT_ADDR and VAULT_TOKEN environment variables,
        you may be able to simplify your playbooks with an action plugin.  This can
        be some somewhat similar to this `example action plugin <https://terryhowe.wordpress.com/2016/05/02/setting-ansible-module-defaults-using-action-plugins/>`_.
        
        
Platform: UNKNOWN
