mirror of
https://github.com/ansible/awx.git
synced 2026-05-09 18:37:36 -02:30
tower_username to controller_username, etc
This commit is contained in:
@@ -13,44 +13,49 @@ class ModuleDocFragment(object):
|
||||
# Automation Platform Controller documentation fragment
|
||||
DOCUMENTATION = r'''
|
||||
options:
|
||||
tower_host:
|
||||
controller_host:
|
||||
description:
|
||||
- URL to your Automation Platform Controller instance.
|
||||
- If value not set, will try environment variable C(TOWER_HOST) and then config files
|
||||
- If value not set, will try environment variable C(CONTROLLER_HOST) and then config files
|
||||
- If value not specified by any means, the value of C(127.0.0.1) will be used
|
||||
type: str
|
||||
tower_username:
|
||||
aliases: [ tower_host ]
|
||||
controller_username:
|
||||
description:
|
||||
- Username for your controller instance.
|
||||
- If value not set, will try environment variable C(TOWER_USERNAME) and then config files
|
||||
- If value not set, will try environment variable C(CONTROLLER_USERNAME) and then config files
|
||||
type: str
|
||||
tower_password:
|
||||
aliases: [ tower_username ]
|
||||
controller_password:
|
||||
description:
|
||||
- Password for your controller instance.
|
||||
- If value not set, will try environment variable C(TOWER_PASSWORD) and then config files
|
||||
- If value not set, will try environment variable C(CONTROLLER_PASSWORD) and then config files
|
||||
type: str
|
||||
tower_oauthtoken:
|
||||
aliases: [ tower_password ]
|
||||
controller_oauthtoken:
|
||||
description:
|
||||
- The OAuth token to use.
|
||||
- This value can be in one of two formats.
|
||||
- A string which is the token itself. (i.e. bqV5txm97wqJqtkxlMkhQz0pKhRMMX)
|
||||
- A dictionary structure as returned by the token module.
|
||||
- If value not set, will try environment variable C(TOWER_OAUTH_TOKEN) and then config files
|
||||
- If value not set, will try environment variable C(CONTROLLER_OAUTH_TOKEN) and then config files
|
||||
type: raw
|
||||
version_added: "3.7"
|
||||
aliases: [ tower_oauthtoken ]
|
||||
validate_certs:
|
||||
description:
|
||||
- Whether to allow insecure connections to AWX.
|
||||
- If C(no), SSL certificates will not be validated.
|
||||
- This should only be used on personally controlled sites using self-signed certificates.
|
||||
- If value not set, will try environment variable C(TOWER_VERIFY_SSL) and then config files
|
||||
- If value not set, will try environment variable C(CONTROLLER_VERIFY_SSL) and then config files
|
||||
type: bool
|
||||
aliases: [ tower_verify_ssl ]
|
||||
tower_config_file:
|
||||
controller_config_file:
|
||||
description:
|
||||
- Path to the controller config file.
|
||||
- If provided, the other locations for config files will not be considered.
|
||||
type: path
|
||||
aliases: [tower_config_file]
|
||||
|
||||
notes:
|
||||
- If no I(config_file) is provided we will attempt to use the tower-cli library
|
||||
|
||||
Reference in New Issue
Block a user