solace_acl_client_connect_exception – client connect exception for acl profile
Configure client connect exception objects for an ACL Profile.
Allows addition and removal of client connect exception objects for ACL Profiles.
Examples
hosts: all
gather_facts: no
any_errors_fatal: true
collections:
- solace.pubsub_plus
module_defaults:
solace_acl_profile:
host: "{{ sempv2_host }}"
port: "{{ sempv2_port }}"
secure_connection: "{{ sempv2_is_secure_connection }}"
username: "{{ sempv2_username }}"
password: "{{ sempv2_password }}"
timeout: "{{ sempv2_timeout }}"
msg_vpn: "{{ vpn }}"
solace_acl_client_connect_exception:
host: "{{ sempv2_host }}"
port: "{{ sempv2_port }}"
secure_connection: "{{ sempv2_is_secure_connection }}"
username: "{{ sempv2_username }}"
password: "{{ sempv2_password }}"
timeout: "{{ sempv2_timeout }}"
msg_vpn: "{{ vpn }}"
tasks:
- name: Create ACL Profile
solace_acl_profile:
name: foo
settings:
clientConnectDefaultAction: "disallow"
state: present
- name: Remove ACL Client Connect Exception
solace_acl_client_connect_exception:
name: "{{client_address}}"
acl_profile_name: foo
state: absent
- name: Add ACL Client Connect Exception
solace_acl_client_connect_exception:
name: "{{client_address}}"
acl_profile_name: foo
state: present
Notes
Note
Module Sempv2 Config: https://docs.solace.com/API-Developer-Online-Ref-Documentation/swagger-ui/config/index.html#/aclProfile/getMsgVpnAclProfileClientConnectExceptions
Sempv2 Config Reference: https://docs.solace.com/API-Developer-Online-Ref-Documentation/swagger-ui/config/index.html#/
Sempv2 Monitor Reference: https://docs.solace.com/API-Developer-Online-Ref-Documentation/swagger-ui/monitor/index.html#/
Sempv2 Action Reference: https://docs.solace.com/API-Developer-Online-Ref-Documentation/swagger-ui/action/index.html#/
See Also
Parameters
- acl_profile_name (required)
The ACL Profile name.
type: str- host (optional)
Hostname of Solace Broker.
type: strdefault: localhost- msg_vpn (required)
The message vpn.
type: str- name (required)
Name of the client connect exception address. Maps to ‘clientConnectExceptionAddress’ in the API.
type: str- password (optional)
Administrator password for Solace Broker.
type: strdefault: admin- port (optional)
Management port of Solace Broker.
type: intdefault: 8080- reverse_proxy (optional)
Use a reverse proxy / api gateway. Note: Experimental. Not permitted for Solace Cloud API.
type: dict- headers (optional)
Additional headers to add to the http call. Example: ‘apiKey: {my-api-key}’.
type: dict- x-asc-module (optional)
Flag for the module to add the header ‘x-asc-module:{module-name}’ to the http call with it’s module name.
type: booldefault: False- x-asc-module-op (optional)
Flag for the module to add the header ‘x-asc-module-op:{module operation}’ to the http call with the module’s operation.
type: booldefault: False
- query_params (optional)
Additional query paramters to add to the URL. Example: ‘apiCode: {my-api-code}’.
type: dict- semp_base_path (optional)
Base path prepended to all SEMP calls. Example: ‘my/base/path’. Resulting URL will be: http(s)://{host}:{port}/{semp_base_path}/{module-semp-call-path}
type: str- use_basic_auth (optional)
Flag to use basic authentication in the http(s) call or not. Uses ‘username’/’password’.
type: booldefault: False
- secure_connection (optional)
If true, use https rather than http.
type: booldefault: False- sempv2_settings (optional)
JSON dictionary of additional configuration for the SEMP V2 API. See Reference documentation.
type: dictaliases: settings- state (optional)
Target state.
type: strdefault: presentchoices: present, absent- timeout (optional)
Connection timeout in seconds for the http request.
type: intdefault: 10- username (optional)
Administrator username for Solace Broker.
type: strdefault: admin- validate_certs (optional)
Flag to switch validation of client certificates on/off when using a secure connection.
type: booldefault: True- x_broker (optional)
Custom HTTP header with the broker virtual router id, if using a SEMPv2 Proxy/agent infrastructure.
type: str
Return Values
- response
The response from the Solace Sempv2 request.
returned: successtype: dictsample:{ "aclProfileName": "test_ansible_solace", "clientConnectExceptionAddress": "192.168.1.64/26", "msgVpnName": "default" }
- msg
The response from the HTTP call in case of error.
returned: errortype: dict- rc
Return code. rc=0 on success, rc=1 on error.
returned: alwaystype: intsample:{ "error": { "rc": 1 }, "success": { "rc": 0 } }