mostly includes renaming non-syntax references to tower

This commit is contained in:
Seth Foster
2021-05-03 17:20:24 -04:00
parent 9f4172ce7b
commit 82c5803e59
92 changed files with 410 additions and 408 deletions

View File

@@ -13,7 +13,7 @@
authors:
- AWX Project Contributors <awx-project@googlegroups.com>
dependencies: {}
description: Ansible content that interacts with the AWX or Ansible Tower API.
description: Ansible content that interacts with the AWX or Automation Platform Controller API.
documentation: https://github.com/ansible/awx/blob/devel/awx_collection/README.md
homepage: https://www.ansible.com/
issues: https://github.com/ansible/awx/issues?q=is%3Aissue+label%3Acomponent%3Aawx_collection

View File

@@ -1,8 +1,8 @@
---
examples:
users: |
- name: Add tower user
tower_user:
- name: Add user
user:
username: jdoe
password: foobarbaz
email: jdoe@example.org
@@ -11,8 +11,8 @@ examples:
state: present
tower_config_file: "~/tower_cli.cfg"
- name: Add tower user as a system administrator
tower_user:
- name: Add user as a system administrator
user:
username: jdoe
password: foobarbaz
email: jdoe@example.org
@@ -20,8 +20,8 @@ examples:
state: present
tower_config_file: "~/tower_cli.cfg"
- name: Add tower user as a system auditor
tower_user:
- name: Add user as a system auditor
user:
username: jdoe
password: foobarbaz
email: jdoe@example.org
@@ -29,16 +29,16 @@ examples:
state: present
tower_config_file: "~/tower_cli.cfg"
- name: Delete tower user
tower_user:
- name: Delete user
user:
username: jdoe
email: jdoe@example.org
state: absent
tower_config_file: "~/tower_cli.cfg"
job_templates: |
- name: Create tower Ping job template
tower_job_template:
- name: Create Ping job template
job_template:
name: "Ping"
job_type: "run"
inventory: "Local"