mirror of
https://github.com/ansible/awx.git
synced 2026-05-14 04:47:44 -02:30
auth_plugin env alternative
This commit is contained in:
@@ -17,19 +17,31 @@ options:
|
|||||||
description: The network address of your Automation Platform Controller host.
|
description: The network address of your Automation Platform Controller host.
|
||||||
env:
|
env:
|
||||||
- name: CONTROLLER_HOST
|
- name: CONTROLLER_HOST
|
||||||
|
- name: TOWER_HOST
|
||||||
|
deprecated:
|
||||||
|
alternatives: 'CONTROLLER_HOST'
|
||||||
username:
|
username:
|
||||||
description: The user that you plan to use to access inventories on the controller.
|
description: The user that you plan to use to access inventories on the controller.
|
||||||
env:
|
env:
|
||||||
- name: CONTROLLER_USERNAME
|
- name: CONTROLLER_USERNAME
|
||||||
|
- name: TOWER_USERNAME
|
||||||
|
deprecated:
|
||||||
|
alternatives: 'CONTROLLER_USERNAME'
|
||||||
password:
|
password:
|
||||||
description: The password for your controller user.
|
description: The password for your controller user.
|
||||||
env:
|
env:
|
||||||
- name: CONTROLLER_PASSWORD
|
- name: CONTROLLER_PASSWORD
|
||||||
|
- name: TOWER_PASSWORD
|
||||||
|
deprecated:
|
||||||
|
alternatives: 'CONTROLLER_PASSWORD'
|
||||||
oauth_token:
|
oauth_token:
|
||||||
description:
|
description:
|
||||||
- The OAuth token to use.
|
- The OAuth token to use.
|
||||||
env:
|
env:
|
||||||
- name: CONTROLLER_OAUTH_TOKEN
|
- name: CONTROLLER_OAUTH_TOKEN
|
||||||
|
- name: TOWER_OAUTH_TOKEN
|
||||||
|
deprecated:
|
||||||
|
alternatives: 'CONTROLLER_OAUTH_TOKEN'
|
||||||
verify_ssl:
|
verify_ssl:
|
||||||
description:
|
description:
|
||||||
- Specify whether Ansible should verify the SSL certificate of the controller host.
|
- Specify whether Ansible should verify the SSL certificate of the controller host.
|
||||||
@@ -37,6 +49,9 @@ options:
|
|||||||
type: bool
|
type: bool
|
||||||
env:
|
env:
|
||||||
- name: CONTROLLER_VERIFY_SSL
|
- name: CONTROLLER_VERIFY_SSL
|
||||||
|
- name: TOWER_VERIFY_SSL
|
||||||
|
deprecated:
|
||||||
|
alternatives: 'CONTROLLER_VERIFY_SSL'
|
||||||
aliases: [ validate_certs ]
|
aliases: [ validate_certs ]
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
|
|||||||
@@ -75,7 +75,8 @@ EXAMPLES = """
|
|||||||
|
|
||||||
- name: Load the UI settings specifying the connection info
|
- name: Load the UI settings specifying the connection info
|
||||||
set_fact:
|
set_fact:
|
||||||
controller_settings: "{{ lookup('awx.awx.controller_api', 'settings/ui' host='controller.example.com', username='admin', password=my_pass_var, verify_ssl=False) }}"
|
controller_settings: "{{ lookup('awx.awx.controller_api', 'settings/ui' host='controller.example.com',
|
||||||
|
username='admin', password=my_pass_var, verify_ssl=False) }}"
|
||||||
|
|
||||||
- name: Report the usernames of all users with admin privs
|
- name: Report the usernames of all users with admin privs
|
||||||
debug:
|
debug:
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
plugins/module_utils/tower_api.py pep8:E203
|
plugins/module_utils/controller_api.py pep8:E203
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
plugins/modules/tower_receive.py validate-modules:deprecation-mismatch
|
plugins/modules/receive.py validate-modules:deprecation-mismatch
|
||||||
plugins/modules/tower_receive.py validate-modules:invalid-documentation
|
plugins/modules/receive.py validate-modules:invalid-documentation
|
||||||
plugins/modules/tower_send.py validate-modules:deprecation-mismatch
|
plugins/modules/send.py validate-modules:deprecation-mismatch
|
||||||
plugins/modules/tower_send.py validate-modules:invalid-documentation
|
plugins/modules/send.py validate-modules:invalid-documentation
|
||||||
plugins/modules/tower_workflow_template.py validate-modules:deprecation-mismatch
|
plugins/modules/workflow_template.py validate-modules:deprecation-mismatch
|
||||||
plugins/modules/tower_workflow_template.py validate-modules:invalid-documentation
|
plugins/modules/workflow_template.py validate-modules:invalid-documentation
|
||||||
plugins/inventory/tower.py pylint:raise-missing-from
|
plugins/inventory/controller.py pylint:raise-missing-from
|
||||||
plugins/inventory/tower.py pylint:super-with-arguments
|
plugins/inventory/controller.py pylint:super-with-arguments
|
||||||
plugins/lookup/tower_schedule_rrule.py pylint:raise-missing-from
|
plugins/lookup/schedule_rrule.py pylint:raise-missing-from
|
||||||
plugins/module_utils/tower_api.py pylint:super-with-arguments
|
plugins/module_utils/controller_api.py pylint:super-with-arguments
|
||||||
plugins/module_utils/tower_awxkit.py pylint:super-with-arguments
|
plugins/module_utils/awxkit.py pylint:super-with-arguments
|
||||||
plugins/module_utils/tower_legacy.py pylint:super-with-arguments
|
plugins/module_utils/tower_legacy.py pylint:super-with-arguments
|
||||||
plugins/module_utils/tower_module.py pylint:super-with-arguments
|
plugins/module_utils/controller_module.py pylint:super-with-arguments
|
||||||
plugins/module_utils/tower_module.py pylint:raise-missing-from
|
plugins/module_utils/controller_module.py pylint:raise-missing-from
|
||||||
test/awx/conftest.py pylint:raise-missing-from
|
test/awx/conftest.py pylint:raise-missing-from
|
||||||
plugins/module_utils/tower_api.py pep8:E203
|
plugins/module_utils/controller_api.py pep8:E203
|
||||||
|
|||||||
Reference in New Issue
Block a user