azure.azcollection.azure_rm_monitordiagnosticsetting module – Create, update, or manage Azure Monitor diagnostic settings.
Note
This module is part of the azure.azcollection collection (version 1.19.0).
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 azure.azcollection
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: azure.azcollection.azure_rm_monitordiagnosticsetting
.
New in azure.azcollection 1.10.0
Synopsis
Create, update, or manage Azure Monitor diagnostic settings for any type of resource.
Requirements
The below requirements are needed on the host that executes this module.
python >= 2.7
The host that executes this module must have the azure.azcollection collection installed via galaxy
All python packages listed in collection’s requirements-azure.txt must be installed via pip on the host that executes modules from azure.azcollection
Full installation instructions may be found https://galaxy.ansible.com/azure/azcollection
Parameters
Parameter |
Comments |
---|---|
Active Directory username. Use when authenticating with an Active Directory user rather than service principal. |
|
Azure AD authority url. Use when authenticating with Username/password, and has your own ADFS authority. |
|
Selects an API profile to use when communicating with Azure services. Default value of Default: |
|
Controls the source of the credentials to use for authentication. Can also be set via the When set to When set to When set to When set to When set to The Choices:
|
|
Controls the certificate validation behavior for Azure endpoints. By default, all modules will validate the server certificate, but when an HTTPS proxy is in use, or against Azure Stack, it may be necessary to disable this behavior by passing Choices:
|
|
Azure client ID. Use when authenticating with a Service Principal. |
|
For cloud environments other than the US public cloud, the environment name (as defined by Azure Python SDK, eg, Default: |
|
An event hub which will receive the diagnostic logs. At least one of storage_account, log_analytics, or event_hub must be specified for the diagnostic setting. |
|
An event hub name to receive logs. If none is specified, the default event hub will be selected. |
|
The event hub namespace. |
|
The shared access policy. |
|
The resource group containing the event hub. If none is specified, the resource group of the resource parameter will be used. |
|
The subscription ID containing the event hub. If none is specified, the subscription ID of the resource parameter will be used. |
|
A log analytics workspace which will receive the diagnostic logs. It can be a string containing the log analytics workspace resource ID. It can be a dictionary containing name and optionally subscription_id and resource_group. At least one of storage_account, log_analytics, or event_hub must be specified for the diagnostic setting. |
|
Parent argument. |
|
Parent argument. |
|
The list of log setttings. At least one of metrics or logs must be specified for the diagnostic setting. |
|
Name of a Management Group Diagnostic Log category for a resource type this setting is applied to. |
|
Name of a Management Group Diagnostic Log category group for a resource type this setting is applied to. |
|
Whether the log is enabled. Choices:
|
|
The retention policy for this log. |
|
The number of days for the retention policy. Default: |
|
Whether the retention policy is enabled. Choices:
|
|
The list of metric setttings. At least one of metrics or logs must be specified for the diagnostic setting. |
|
Name of a Diagnostic Metric category for a resource type this setting is applied to. |
|
Whether the metric category is enabled. Choices:
|
|
The retention policy for this metric. |
|
The number of days for the retention policy. Default: |
|
Whether the retention policy is enabled. Choices:
|
|
The name of the diagnostic settings. |
|
Active Directory user password. Use when authenticating with an Active Directory user rather than service principal. |
|
Security profile found in ~/.azure/credentials file. |
|
The resource which will be monitored with the diagnostic setting. It can be a string containing the resource ID. It can be a dictionary containing name, type, resource_group, and optionally subscription_id. name. The resource name. type. The resource type including namespace, such as ‘Microsoft.Network/virtualNetworks’. resource_group. The resource group containing the resource. subscription_id. The subscription ID containing the resource. If none is specified, the credential’s subscription ID will be used. |
|
Azure client secret. Use when authenticating with a Service Principal. |
|
State of the private endpoint DNS zone group. Use Choices:
|
|
A storage account which will receive the diagnostic logs. It can be a string containing the storage account resource ID. It can be a dictionary containing name and optionally subscription_id and resource_group. At least one of storage_account, log_analytics, or event_hub must be specified for the diagnostic setting. |
|
Your Azure subscription Id. |
|
Azure tenant ID. Use when authenticating with a Service Principal. |
|
The thumbprint of the private key specified in x509_certificate_path. Use when authenticating with a Service Principal. Required if x509_certificate_path is defined. |
|
Path to the X509 certificate used to create the service principal in PEM format. The certificate must be appended to the private key. Use when authenticating with a Service Principal. |
Notes
Note
For authentication with Azure you can pass parameters, set environment variables, use a profile stored in ~/.azure/credentials, or log in before you run your tasks or playbook with
az login
.Authentication is also possible using a service principal or Active Directory user.
To authenticate via service principal, pass subscription_id, client_id, secret and tenant or set environment variables AZURE_SUBSCRIPTION_ID, AZURE_CLIENT_ID, AZURE_SECRET and AZURE_TENANT.
To authenticate via Active Directory user, pass ad_user and password, or set AZURE_AD_USER and AZURE_PASSWORD in the environment.
Alternatively, credentials can be stored in ~/.azure/credentials. This is an ini file containing a [default] section and the following keys: subscription_id, client_id, secret and tenant or subscription_id, ad_user and password. It is also possible to add additional profiles. Specify the profile by passing profile or setting AZURE_PROFILE in the environment.
See Also
See also
- Sign in with Azure CLI
How to authenticate using the
az login
command.
Examples
- name: Create storage-based diagnostic setting for a virtual network
azure_rm_monitordiagnosticsetting:
name: "logs-storage"
resource: "{{ vnet_output.state.id }}"
storage_account: "{{ storage_output.state.id }}"
logs:
- category_group: "allLogs"
metrics:
- category: "AllMetrics"
- name: Create diagnostic setting for webapp with log analytics, event hub, and storage
azure_rm_monitordiagnosticsetting:
name: "webapp-logs"
resource:
name: "my-webapp"
type: "Microsoft.Web/sites"
resource_group: "my-webapp-resource-group"
event_hub:
namespace: "my-event-hub"
policy: "RootManageSharedAccessKey"
log_analytics:
name: "my-log-analytics-workspace"
resource_group: "my-log-analytics-workspace-resource-group"
storage_account:
name: "mystorageaccount"
logs:
- category: "AppServiceHTTPLogs"
- category: "AppServiceConsoleLogs"
- category: "AppServiceAppLogs"
- category: "AppServiceAuditLogs"
- category: "AppServiceIPSecAuditLogs"
- category: "AppServicePlatformLogs"
- name: Delete diagnostic setting
azure_rm_monitordiagnosticsetting:
name: "webapp-logs"
resource:
name: "my-webapp"
type: "Microsoft.Web/sites"
resource_group: "my-webapp-resource-group"
state: "absent"
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
The state of the diagnostic setting. Returned: always |
|
The event hub for the diagnostic setting, if configured. Returned: always |
|
Name of the hub within the namespace. Returned: always Sample: |
|
ID of the event hub namespace. Returned: always Sample: |
|
Name of the event hub namespace. Returned: always Sample: |
|
Name of the event hub shared access policy. Returned: always Sample: |
|
ID of the diagnostic setting. Returned: always Sample: |
|
The log analytics workspace for the diagnostic setting, if configured. Returned: always |
|
ID of the log analytics workspace. Returned: always Sample: |
|
Enabled log configurations for the diagnostic setting. Returned: always |
|
Name of a Management Group Diagnostic Log category for a resource type this setting is applied to. Returned: always |
|
Name of a Management Group Diagnostic Log category group for a resource type this setting is applied to. Returned: always |
|
Whether this log is enabled. Returned: always |
|
The retention policy for this log. Returned: always |
|
The number of days for the retention policy. Returned: always |
|
Whether the retention policy is enabled. Returned: always |
|
Enabled metric configurations for the diagnostic setting. Returned: always |
|
Name of a Diagnostic Metric category for a resource type this setting is applied to. Returned: always |
|
Whether the metric category is enabled. Returned: always |
|
The retention policy for the metric category. Returned: always |
|
The number of days for the retention policy. Returned: always |
|
Whether the retention policy is enabled. Returned: always |
|
Name of the diagnostic setting. Returned: always Sample: |
|
The storage account for the diagnostic setting, if configured. Returned: always |
|
ID of the storage account. Returned: always Sample: |