diff --git a/lib/ansible/modules/network/aci/aci_fabric_node.py b/lib/ansible/modules/network/aci/aci_fabric_node.py index 8cc1ae31eb..f75e301a3f 100644 --- a/lib/ansible/modules/network/aci/aci_fabric_node.py +++ b/lib/ansible/modules/network/aci/aci_fabric_node.py @@ -62,9 +62,9 @@ EXAMPLES = r''' 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 @@ -72,8 +72,8 @@ EXAMPLES = r''' host: apic username: admin password: SomeSecretPassword - serial: ansible_test - node_id: 105 + serial: FDO2031124L + node_id: 1011 state: absent - name: Query fabric nodes diff --git a/lib/ansible/modules/network/aci/aci_static_binding_to_epg.py b/lib/ansible/modules/network/aci/aci_static_binding_to_epg.py index d5172ad72a..f046fb2959 100644 --- a/lib/ansible/modules/network/aci/aci_static_binding_to_epg.py +++ b/lib/ansible/modules/network/aci/aci_static_binding_to_epg.py @@ -125,9 +125,9 @@ EXAMPLES = r''' 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 @@ -139,9 +139,9 @@ EXAMPLES = r''' 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 diff --git a/lib/ansible/modules/network/aci/aci_switch_policy_vpc_protection_group.py b/lib/ansible/modules/network/aci/aci_switch_policy_vpc_protection_group.py index c4e5569176..4552ac4dd3 100644 --- a/lib/ansible/modules/network/aci/aci_switch_policy_vpc_protection_group.py +++ b/lib/ansible/modules/network/aci/aci_switch_policy_vpc_protection_group.py @@ -61,10 +61,10 @@ EXAMPLES = r''' 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 @@ -72,7 +72,7 @@ EXAMPLES = r''' host: apic username: admin password: SomeSecretPassword - protection_group: ansible_test + protection_group: leafPair101-vpcGrp state: absent - name: Query vPC Protection Groups @@ -87,7 +87,7 @@ EXAMPLES = r''' host: apic username: admin password: SomeSecretPassword - protection_group: ansible_test + protection_group: leafPair101-vpcGrp state: query '''