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:
Dag Wieers 2018-01-22 22:06:56 +01:00 committed by GitHub
parent cf1f7b53df
commit d6004852a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
56 changed files with 197 additions and 198 deletions

View file

@ -112,14 +112,14 @@ extends_documentation_fragment: aci
EXAMPLES = r'''
- name: create a tenant
aci_tenant:
hostname: apic
host: apic
username: admin
password: SomeSecretPassword
tenant: production
- name: create a bridge domain
aci_bd:
hostname: apic
host: apic
username: admin
password: SomeSecretPassword
tenant: production
@ -127,7 +127,7 @@ EXAMPLES = r'''
- name: create a subnet
aci_bd_subnet:
hostname: apic
host: apic
username: admin
password: SomeSecretPassword
tenant: production
@ -137,7 +137,7 @@ EXAMPLES = r'''
- name: create a subnet with options
aci_bd_subnet:
hostname: apic
host: apic
username: admin
password: SomeSecretPassword
tenant: production
@ -152,7 +152,7 @@ EXAMPLES = r'''
- name: update a subnets scope to private and shared
aci_bd_subnet:
hostname: apic
host: apic
username: admin
password: SomeSecretPassword
tenant: production
@ -163,14 +163,14 @@ EXAMPLES = r'''
- name: get all subnets
aci_bd_subnet:
hostname: apic
host: apic
username: admin
password: SomeSecretPassword
state: query
- name: get all subnets of specific gateway in specified tenant
aci_bd_subnet:
hostname: apic
host: apic
username: admin
password: SomeSecretPassword
state: query
@ -180,7 +180,7 @@ EXAMPLES = r'''
- name: get specific subnet
aci_bd_subnet:
hostname: apic
host: apic
username: admin
password: SomeSecretPassword
state: query
@ -191,7 +191,7 @@ EXAMPLES = r'''
- name: delete a subnet
aci_bd_subnet:
hostname: apic
host: apic
username: admin
password: SomeSecretPassword
state: absent