Metadata-Version: 1.0
Name: ansible-modules-dcos
Version: 1.2.1
Summary: DCOS Ansible Modules
Home-page: https://github.com/TerryHowe/ansible-modules-dcos
Author: Kevin Wood,Terry Howe
Author-email: kevin.wood@example.com
License: MIT
Description: Ansible Modules for DC/OS
        =========================
        
        Ansible modules for DC/OS.
        
        .. image:: https://img.shields.io/pypi/v/ansible-modules-dcos.svg
           :alt: Latest version
           :target: https://pypi.python.org/pypi/ansible-modules-dcos/
        
        Usage
        -----
        
        Create a user::
        
            - hosts: localhost
              tasks:
                - dcos_user: 
                    uid: "bobslydell"
                    description: 'bobslydell'
                    password: 'fooBar123ASDF'
                    state: present
                    dcos_credentials: "{{ dcos_facts.ansible_facts.dcos_credentials }}"
        
        Create a group::
        
            - dcos_group: gid="bobs" description='the bobs'
        
        Create a ACL::
        
            - dcos_acl:
                rid: "dcos:adminrouter:service:marathon-bobs"
                description: "Bob acl"
        
        Add user to ACL::
        
            - dcos_acl_user:
                rid: "dcos:adminrouter:service:marathon-bobs"
                uid: "bobslydell"
                permission: "read"
        
        Add group to ACL::
        
            - dcos_acl_group:
                rid: "dcos:adminrouter:service:marathon-bobs"
                gid: "bobs"
                permission: "read"
        
        Print the DC/OS token::
        
            - debug: msg="{{lookup('dcos_token')}}"
        
        Print the DC/OS token header::
        
            - debug: msg="{{lookup('dcos_token_header')}}"
        
        License
        -------
        
        MIT
        
Platform: UNKNOWN
