mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-20 07:43:35 -05:00
mostly includes renaming non-syntax references to tower
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user