hitachivantara.vspone_block.sds_block.hv_sds_block_audit_log_setting module – Manages Hitachi SDS block storage system audit 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_audit_log_setting.
New in hitachivantara.vspone_block 4.6.0
Synopsis
This module allows for the configuration of audit log settings.
It supports updating syslog forwarding settings and server configurations.
For examples go to URL https://github.com/hitachi-vantara/vspone-block-ansible/blob/main/playbooks/sds_block_direct/audit_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 audit log settings task. |
|
The directory where the audit log file will be downloaded. This is a required field when the state field is |
|
Whether to create the audit log file on the storage system before downloading. This is a valid field when the state field is 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. |
|
Syslog server name or IP address. |
|
Transport protocol for syslog server. Choices:
|
|
The level of the audit log settings task. Choices are Choices:
|
Attributes
Attribute |
Support |
Description |
|---|---|---|
Support: none |
Determines if the module should run in check mode. |
Examples
- name: Configure audit log settings with syslog forwarding
hitachivantara.vspone_block.sds_block.hv_sds_block_audit_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: Update syslog server configuration
hitachivantara.vspone_block.sds_block.hv_sds_block_audit_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: Download audit log file
hitachivantara.vspone_block.sds_block.hv_sds_block_audit_log_setting:
state: download_audit_log
connection_info:
address: sdsb.company.com
username: "admin"
password: "password"
spec:
audit_log_file_location: "/tmp/audit_logs"
- name: Create and download audit log file
hitachivantara.vspone_block.sds_block.hv_sds_block_audit_log_setting:
state: download_audit_log
connection_info:
address: sdsb.company.com
username: "admin"
password: "password"
spec:
audit_log_file_location: "/tmp/audit_logs"
refresh: true
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
Dictionary containing the configured audit log settings. Returned: always |
|
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: |