From a1241d99ee8f0862e0548c2417ef2e573b84ba36 Mon Sep 17 00:00:00 2001 From: Gittins Date: Fri, 23 Feb 2018 12:00:26 +0000 Subject: [PATCH] Updated examples aci_contract_subject_to_filter.py (#36626) Changed examples to reference the correct module name. Previously the examples used "aci_subject_filter_binding". --- .../modules/network/aci/aci_contract_subject_to_filter.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ansible/modules/network/aci/aci_contract_subject_to_filter.py b/lib/ansible/modules/network/aci/aci_contract_subject_to_filter.py index b6c98b97f9c..8f2889dfb6f 100644 --- a/lib/ansible/modules/network/aci/aci_contract_subject_to_filter.py +++ b/lib/ansible/modules/network/aci/aci_contract_subject_to_filter.py @@ -60,7 +60,7 @@ extends_documentation_fragment: aci EXAMPLES = r''' - name: Add a new contract subject to filer binding - aci_subject_filter_binding: + aci_contract_subject_to_filter: host: apic username: admin password: SomeSecretPassword @@ -72,7 +72,7 @@ EXAMPLES = r''' state: present - name: Remove an existing contract subject to filter binding - aci_subject_filter_binding: + aci_contract_subject_to_filter: host: apic username: admin password: SomeSecretPassword @@ -84,7 +84,7 @@ EXAMPLES = r''' state: present - name: Query a specific contract subject to filter binding - aci_subject_filter_binding: + aci_contract_subject_to_filter: host: apic username: admin password: SomeSecretPassword @@ -95,7 +95,7 @@ EXAMPLES = r''' state: query - name: Query all contract subject to filter bindings - aci_subject_filter_binding: + aci_contract_subject_to_filter: host: apic username: admin password: SomeSecretPassword