hitachivantara.vspone_block.sds_block.hv_sds_block_event_log_setting module – Manages Hitachi SDS block storage system event log settings.
Note
This module is part of the hitachivantara.vspone_block collection (version 4.6.1).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install hitachivantara.vspone_block.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: hitachivantara.vspone_block.sds_block.hv_sds_block_event_log_setting.
New in hitachivantara.vspone_block 4.6.0
Synopsis
This module allows for the configuration of event log settings.
It supports updating syslog forwarding settings and email report settings.
For examples go to URL https://github.com/hitachi-vantara/vspone-block-ansible/blob/main/playbooks/sds_block_direct/event_log_setting.yml
Requirements
The below requirements are needed on the host that executes this module.
python >= 3.9
Parameters
Parameter |
Comments |
|---|---|
Information required to establish a connection to the storage system. |
|
IP address or hostname of the storage system. |
|
Type of connection to the storage system. Choices:
|
|
Password for authentication. This is a required field. |
|
Username for authentication. This is a required field. |
|
Specification for the event log settings task. |
|
Email report configuration. |
|
List of SMTP server settings. |
|
Connection encryption type for SMTP. Choices:
|
|
Email from address. |
|
Index of the SMTP server. Choices:
|
|
Whether the SMTP server is enabled. Choices:
|
|
Whether SMTP authentication is enabled. Choices:
|
|
SMTP server port number. |
|
SMTP authentication account. |
|
SMTP authentication password. |
|
SMTP server name or IP address. |
|
Primary email recipient address. |
|
Secondary email recipient address. |
|
Tertiary email recipient address. |
|
SMTP server root certificate configuration. This is a required field when the state field is |
|
Absolute path to the certificate file to import. Required when state is |
|
Directory path where the certificate will be downloaded. Required when state is |
|
Index of the SMTP server for which to import/download the certificate. Choices:
|
|
Syslog forwarding configuration. |
|
Location name for syslog forwarding. |
|
List of syslog servers configuration. |
|
Index of the syslog server. Choices:
|
|
Whether the syslog server is enabled. Choices:
|
|
Syslog server port number. Default: |
|
Syslog server name or IP address. |
|
Transport protocol for syslog server. Choices:
|
|
The level of the event log settings task. Choices are Choices:
|
Attributes
Attribute |
Support |
Description |
|---|---|---|
Support: none |
Determines if the module should run in check mode. |
Examples
- name: Configure event log settings with syslog forwarding
hitachivantara.vspone_block.sds_block.hv_sds_block_event_log_setting:
state: present
connection_info:
address: sdsb.company.com
username: "admin"
password: "password"
spec:
syslog_forwarding_setting:
location_name: "datacenter1"
syslog_servers:
- index: 1
is_enabled: true
server_name: "syslog.example.com"
port: 514
transport_protocol: "UDP"
- index: 2
is_enabled: false
server_name: "backup-syslog.example.com"
port: 514
transport_protocol: "UDP"
- name: Configure event log settings with email reporting
hitachivantara.vspone_block.sds_block.hv_sds_block_event_log_setting:
state: present
connection_info:
address: sdsb.company.com
username: "admin"
password: "password"
spec:
email_report_setting:
smtp_settings:
- index: 1
is_enabled: true
smtp_server_name: "smtp.example.com"
port: 587
connection_encryption_type: "STARTTLS"
is_smtp_auth_enabled: true
smtp_auth_account: "eventlog@example.com"
smtp_auth_password: "secure_password"
from_address: "storage-alerts@example.com"
to_address1: "admin@example.com"
to_address2: "team@example.com"
to_address3: ""
- name: Update syslog server configuration
hitachivantara.vspone_block.sds_block.hv_sds_block_event_log_setting:
state: present
connection_info:
address: sdsb.company.com
username: "admin"
password: "password"
spec:
syslog_forwarding_setting:
location_name: "datacenter1"
syslog_servers:
- index: 1
is_enabled: true
server_name: "new-syslog.example.com"
port: 1514
transport_protocol: "UDP"
- name: Import SMTP root certificate for SMTP server 1
hitachivantara.vspone_block.sds_block.hv_sds_block_event_log_setting:
state: import_smtp_certificate
connection_info:
address: sdsb.company.com
username: "admin"
password: "password"
spec:
smtp_root_certificate:
certificate_path: "/etc/ssl/certs/smtp_root_ca.pem"
target_smtp_server: 1
- name: Import SMTP root certificate for SMTP server 2
hitachivantara.vspone_block.sds_block.hv_sds_block_event_log_setting:
state: import_smtp_certificate
connection_info:
address: sdsb.company.com
username: "admin"
password: "password"
spec:
smtp_root_certificate:
certificate_path: "/etc/ssl/certs/smtp_root_ca.pem"
target_smtp_server: 2
- name: Download SMTP root certificate from server 1
hitachivantara.vspone_block.sds_block.hv_sds_block_event_log_setting:
state: download_smtp_certificate
connection_info:
address: sdsb.company.com
username: "admin"
password: "password"
spec:
smtp_root_certificate:
download_location: "/tmp/certificates"
# target_smtp_server: 1 # Optional - defaults to 1
- name: Download SMTP root certificate from server 2
hitachivantara.vspone_block.sds_block.hv_sds_block_event_log_setting:
state: download_smtp_certificate
connection_info:
address: sdsb.company.com
username: "admin"
password: "password"
spec:
smtp_root_certificate:
download_location: "/tmp/certificates"
target_smtp_server: 2
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
Dictionary containing the configured event log settings. Returned: always |
|
Email report configuration details. Returned: success |
|
List of configured SMTP servers. Returned: success |
|
Connection encryption type. Returned: success Sample: |
|
Email from address. Returned: success Sample: |
|
Index of the SMTP server. Returned: success Sample: |
|
Whether the SMTP server is enabled. Returned: success Sample: |
|
Whether SMTP authentication is enabled. Returned: success Sample: |
|
SMTP server port number. Returned: success Sample: |
|
SMTP authentication account. Returned: success Sample: |
|
SMTP server name or IP address. Returned: success Sample: |
|
Primary recipient address. Returned: success Sample: |
|
Secondary recipient address. Returned: success Sample: |
|
Tertiary recipient address. Returned: success Sample: |
|
Syslog forwarding configuration details. Returned: success |
|
Location name for syslog forwarding. Returned: success Sample: |
|
List of configured syslog servers. Returned: success |
|
Index of the syslog server. Returned: success Sample: |
|
Whether the syslog server is enabled. Returned: success Sample: |
|
Syslog server port number. Returned: success Sample: |
|
Syslog server name or IP address. Returned: success Sample: |
|
Transport protocol for syslog server. Returned: success Sample: |