wwt.ansible_dnac.dnac_syslog (1.1.6) — module

Manage Syslog server(s) within Cisco DNA Center

| "added in version" 2.4 of wwt.ansible_dnac"

Authors: Jeff Andiorio (@jandiorio)

development | supported by jandiorio

Install collection

Install with ansible-galaxy collection install wwt.ansible_dnac:==1.1.6


Add to requirements.yml

  collections:
    - name: wwt.ansible_dnac
      version: 1.1.6

Description

Manage Syslog Server(s) settings in Cisco DNA Center. Based on 1.1+ version of DNAC API


Requirements

Inputs

    
host:
    description:
    - Host is the target Cisco DNA Center controller to execute against.
    required: true

port:
    choices:
    - 80
    - 443
    default: 443
    description:
    - Port is the TCP port for the HTTP connection.
    required: false

state:
    choices:
    - present
    - absent
    default: present
    description:
    - State provides the action to be executed using the terms present, absent, etc.
    required: false

timeout:
    default: 30
    description:
    - The timeout provides a value for how long to wait for the executed command complete.
    required: false

use_ssl:
    choices:
    - true
    - false
    default: true
    description:
    - Enter the boolean value for whether to use SSL or not.
    required: false

password:
    description:
    - Provide the password for connection to the Cisco DNA Center Controller.
    required: true

username:
    description:
    - Provide the username for the connection to the Cisco DNA Center Controller.
    required: true

use_proxy:
    choices:
    - true
    - false
    default: true
    description:
    - Enter a boolean value for whether to use proxy or not.
    required: false

group_name:
    default: Global
    description: Name of the group where the setting will be applied.
    required: false
    type: string

syslog_servers:
    description: The ip address(es) of the syslog server(s).
    required: true
    type: list

validate_certs:
    choices:
    - true
    - false
    default: true
    description:
    - Specify if verifying the certificate is desired.
    required: false

Outputs

previous:
  description: Configuration from DNA Center prior to any changes.
  returned: success
  sample:
  - groupUuid: '-1'
    inheritedGroupName: ''
    inheritedGroupUuid: ''
    instanceType: ip
    instanceUuid: 1ca3a703-4720-472d-9314-ba1fbe48e139
    key: syslog.server
    namespace: global
    type: ip.address
    value:
    - 192.168.200.1
    version: 32
  type: list
proposed:
  description: Configuration to be sent to DNA Center.
  returned: success
  sample:
  - groupUuid: '-1'
    instanceType: ip
    key: syslog.server
    namespace: global
    type: ip.address
    value:
    - 192.168.200.1
    - 192.168.200.2
  type: list