[collection] Remove instance defaults from docs (#12964)

We don't specify defaults in the module (because it messes up Instance
updates because AWX things we are trying to change things to be the
default).

- Update the docs to remove the defaults that no longer exist
- Update tests to make them pass (oops)
- Fix tangentially related typo in Kind development docs

Signed-off-by: Rick Elrod <rick@elrod.me>
This commit is contained in:
Rick Elrod
2022-09-27 15:18:38 -05:00
committed by GitHub
parent ca46aec483
commit 42109fb45a
3 changed files with 7 additions and 8 deletions

View File

@@ -14,6 +14,8 @@
- name: Create an instance
awx.awx.instance:
hostname: "{{ item }}"
node_type: execution
node_state: installed
with_items:
- "{{ hostname1 }}"
- "{{ hostname2 }}"
@@ -26,6 +28,8 @@
- name: Create an instance with non-default config
awx.awx.instance:
hostname: "{{ hostname3 }}"
node_type: execution
node_state: installed
capacity_adjustment: 0.4
listener_port: 31337
register: result