mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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".
This commit is contained in:
parent
07927f52ae
commit
a1241d99ee
1 changed files with 4 additions and 4 deletions
|
@ -60,7 +60,7 @@ extends_documentation_fragment: aci
|
||||||
|
|
||||||
EXAMPLES = r'''
|
EXAMPLES = r'''
|
||||||
- name: Add a new contract subject to filer binding
|
- name: Add a new contract subject to filer binding
|
||||||
aci_subject_filter_binding:
|
aci_contract_subject_to_filter:
|
||||||
host: apic
|
host: apic
|
||||||
username: admin
|
username: admin
|
||||||
password: SomeSecretPassword
|
password: SomeSecretPassword
|
||||||
|
@ -72,7 +72,7 @@ EXAMPLES = r'''
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Remove an existing contract subject to filter binding
|
- name: Remove an existing contract subject to filter binding
|
||||||
aci_subject_filter_binding:
|
aci_contract_subject_to_filter:
|
||||||
host: apic
|
host: apic
|
||||||
username: admin
|
username: admin
|
||||||
password: SomeSecretPassword
|
password: SomeSecretPassword
|
||||||
|
@ -84,7 +84,7 @@ EXAMPLES = r'''
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Query a specific contract subject to filter binding
|
- name: Query a specific contract subject to filter binding
|
||||||
aci_subject_filter_binding:
|
aci_contract_subject_to_filter:
|
||||||
host: apic
|
host: apic
|
||||||
username: admin
|
username: admin
|
||||||
password: SomeSecretPassword
|
password: SomeSecretPassword
|
||||||
|
@ -95,7 +95,7 @@ EXAMPLES = r'''
|
||||||
state: query
|
state: query
|
||||||
|
|
||||||
- name: Query all contract subject to filter bindings
|
- name: Query all contract subject to filter bindings
|
||||||
aci_subject_filter_binding:
|
aci_contract_subject_to_filter:
|
||||||
host: apic
|
host: apic
|
||||||
username: admin
|
username: admin
|
||||||
password: SomeSecretPassword
|
password: SomeSecretPassword
|
||||||
|
|
Loading…
Reference in a new issue