Skip to content

Latest commit

 

History

History
executable file
·
80 lines (65 loc) · 1.47 KB

session-module-documentation.md

File metadata and controls

executable file
·
80 lines (65 loc) · 1.47 KB

inwx.collection.session module

Module for retrieving an INWX API session with two factor authentication

Requirements

  • Python 2.7+
  • Python requests module

Examples

Playbooks

Tasks

- name: Get a session without two factor authentication
  inwx.collection.session:
    username: test_user
    password: test_password

- name: Get a session with two factor authentication
  inwx.collection.session:
    username: test_user
    password: test_password
    shared_secret: test_shared_secret

- name: Get a session for the OTE API
  inwx.collection.session:
    api_env: 'ote'
    username: test_user
    password: test_password

Options

api_env:
    description:
        - Defines which api should be used.
    type: str
    choices: [ live, ote ]
    default: 'live'
    required: false
password:
    description:
        - INWX Account Password
        - Required for API authentication.
    type: str
    required: true
    aliases: [ pass ]
shared_secret:
    description:
        - INWX Account Shared Secret
        - Required for the generation of a TOTP.
    type: str
    required: false
username:
    description:
        - INWX Account Username
        - Required for API authentication.
    type: str
    required: true
    aliases: [ user ]

Return Values

session:
    description: The session for this log in.
    returned: success
    type: str

License

MIT