Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed awx.awx from examples #15820

Open
wants to merge 1 commit into
base: devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions awx_collection/plugins/modules/instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,25 +82,25 @@

EXAMPLES = '''
- name: Create an instance
awx.awx.instance:
instance:
hostname: my-instance.prod.example.com
capacity_adjustment: 0.4

- name: Deprovision the instance
awx.awx.instance:
instance:
hostname: my-instance.prod.example.com
node_state: deprovisioning

- name: Create execution node
awx.awx.instance:
instance:
hostname: execution.example.com
node_type: execution
peers:
- 12
- route.to.hop.example.com

- name: Remove peers
awx.awx.instance:
instance:
hostname: execution.example.com
peers:
'''
Expand Down
4 changes: 2 additions & 2 deletions awx_collection/plugins/modules/workflow_job_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@
organization: Default

- name: Create a workflow job template with workflow nodes in template
awx.awx.workflow_job_template:
workflow_job_template:
name: example-workflow
inventory: Demo Inventory
extra_vars: {'foo': 'bar', 'another-foo': {'barz': 'bar2'}}
Expand Down Expand Up @@ -510,7 +510,7 @@
organization: Foo

- name: Create a workflow job template with workflow nodes in template
awx.awx.workflow_job_template:
workflow_job_template:
name: example-workflow
inventory: Demo Inventory
extra_vars: {'foo': 'bar', 'another-foo': {'barz': 'bar2'}}
Expand Down