mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 06:30:19 -07:00
ACI: Move to 'host' parameter instead of 'hostname' (#35161)
* ACI: Move to 'host' parameter instead of 'hostname' * Update host parameter in documentation fragment too
This commit is contained in:
parent
cf1f7b53df
commit
d6004852a2
56 changed files with 197 additions and 198 deletions
|
@ -69,7 +69,7 @@ extends_documentation_fragment: aci
|
|||
EXAMPLES = r'''
|
||||
- name: Create a Snapshot
|
||||
aci_config_snapshot:
|
||||
hostname: apic
|
||||
host: apic
|
||||
username: admin
|
||||
password: SomeSecretPassword
|
||||
state: present
|
||||
|
@ -79,14 +79,14 @@ EXAMPLES = r'''
|
|||
|
||||
- name: Query all Snapshots
|
||||
aci_config_snapshot:
|
||||
hostname: apic
|
||||
host: apic
|
||||
username: admin
|
||||
password: SomeSecretPassword
|
||||
state: query
|
||||
|
||||
- name: Query Snapshots associated with a particular Export Policy
|
||||
aci_config_snapshot:
|
||||
hostname: apic
|
||||
host: apic
|
||||
username: admin
|
||||
password: SomeSecretPassword
|
||||
state: query
|
||||
|
@ -94,7 +94,7 @@ EXAMPLES = r'''
|
|||
|
||||
- name: Delete a Snapshot
|
||||
aci_config_snapshot:
|
||||
hostname: apic
|
||||
host: apic
|
||||
username: admin
|
||||
password: SomeSecretPassword
|
||||
state: absent
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue