mirror of
https://github.com/ansible/awx.git
synced 2026-05-06 17:07:36 -02:30
Adding tower_api and tower_get_id lookup plugins
This commit is contained in:
48
awx_collection/plugins/doc_fragments/auth_plugin.py
Normal file
48
awx_collection/plugins/doc_fragments/auth_plugin.py
Normal file
@@ -0,0 +1,48 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright: (c) 2017, Wayne Witzel III <wayne@riotousliving.com>
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
|
||||
class ModuleDocFragment(object):
|
||||
|
||||
# Ansible Tower documentation fragment
|
||||
DOCUMENTATION = r'''
|
||||
options:
|
||||
host:
|
||||
description: The network address of your Ansible Tower host.
|
||||
env:
|
||||
- name: TOWER_HOST
|
||||
username:
|
||||
description: The user that you plan to use to access inventories on Ansible Tower.
|
||||
env:
|
||||
- name: TOWER_USERNAME
|
||||
password:
|
||||
description: The password for your Ansible Tower user.
|
||||
env:
|
||||
- name: TOWER_PASSWORD
|
||||
oauth_token:
|
||||
description:
|
||||
- The Tower OAuth token to use.
|
||||
env:
|
||||
- name: TOWER_OAUTH_TOKEN
|
||||
verify_ssl:
|
||||
description:
|
||||
- Specify whether Ansible should verify the SSL certificate of Ansible Tower host.
|
||||
- Defaults to True, but this is handled by the shared module_utils code
|
||||
type: bool
|
||||
env:
|
||||
- name: TOWER_VERIFY_SSL
|
||||
aliases: [ validate_certs ]
|
||||
|
||||
notes:
|
||||
- If no I(config_file) is provided we will attempt to use the tower-cli library
|
||||
defaults to find your Tower host information.
|
||||
- I(config_file) should contain Tower configuration in the following format
|
||||
host=hostname
|
||||
username=username
|
||||
password=password
|
||||
'''
|
||||
Reference in New Issue
Block a user