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

aci minor fix testing actual real life scenario examples #36613

Merged
merged 1 commit into from
Feb 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions lib/ansible/modules/network/aci/aci_fabric_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,18 @@
host: apic
username: admin
password: SomeSecretPassword
serial: ansible_test
node_id: 105
switch: test
serial: FDO2031124L
node_id: 1011
switch: fab4-sw1011
state: present

- name: Remove fabric node
aci_fabric_node:
host: apic
username: admin
password: SomeSecretPassword
serial: ansible_test
node_id: 105
serial: FDO2031124L
node_id: 1011
state: absent

- name: Query fabric nodes
Expand Down
12 changes: 6 additions & 6 deletions lib/ansible/modules/network/aci/aci_static_binding_to_epg.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@
host: apic
username: admin
password: SomeSecretPassword
tenant: anstest
ap: anstest
epg: anstest
tenant: accessport-code-cert
ap: accessport_code_app
epg: accessport_epg1
interface_type: switch_port
pod: 1
leafs: 101
Expand All @@ -139,9 +139,9 @@
host: apic
username: admin
password: SomeSecretPassword
tenant: anstest
ap: anstest
epg: anstest
tenant: accessport-code-cert
ap: accessport_code_app
epg: accessport_epg1
interface_type: switch_port
pod: 1
leafs: 101
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,18 @@
host: apic
username: admin
password: SomeSecretPassword
protection_group: ansible_test
protection_group: leafPair101-vpcGrp
protection_group_id: 6
switch_1_id: 3811
switch_2_id: 3812
switch_1_id: 1011
switch_2_id: 1012
state: present

- name: Remove Explicit vPC Protection Group
aci_switch_policy_vpc_protection_group:
host: apic
username: admin
password: SomeSecretPassword
protection_group: ansible_test
protection_group: leafPair101-vpcGrp
state: absent

- name: Query vPC Protection Groups
Expand All @@ -87,7 +87,7 @@
host: apic
username: admin
password: SomeSecretPassword
protection_group: ansible_test
protection_group: leafPair101-vpcGrp
state: query
'''

Expand Down