mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -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
|
@ -12,7 +12,7 @@
|
|||
# CLEAN ENVIRONMENT
|
||||
- name: Remove tenant
|
||||
aci_tenant: &tenant_absent
|
||||
hostname: '{{ aci_hostname }}'
|
||||
host: '{{ aci_hostname }}'
|
||||
username: '{{ aci_username }}'
|
||||
password: '{{ aci_password }}'
|
||||
validate_certs: '{{ aci_validate_certs | default(false) }}'
|
||||
|
@ -25,7 +25,7 @@
|
|||
# ADD TENANT
|
||||
- name: Add tenant (check_mode)
|
||||
aci_tenant: &tenant_present
|
||||
hostname: '{{ aci_hostname }}'
|
||||
host: '{{ aci_hostname }}'
|
||||
username: '{{ aci_username }}'
|
||||
password: '{{ aci_password }}'
|
||||
validate_certs: '{{ aci_validate_certs | default(false) }}'
|
||||
|
@ -109,7 +109,7 @@
|
|||
# QUERY ALL TENANTS
|
||||
- name: Query all tenants (check_mode)
|
||||
aci_tenant: &tenant_query
|
||||
hostname: '{{ aci_hostname }}'
|
||||
host: '{{ aci_hostname }}'
|
||||
username: '{{ aci_username }}'
|
||||
password: '{{ aci_password }}'
|
||||
validate_certs: '{{ aci_validate_certs | default(false) }}'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue