azure.azcollection.azure_rm_backuppolicy module – Manage Azure Backup Policy
Note
This module is part of the azure.azcollection collection (version 3.20.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_backuppolicy.
New in azure.azcollection 1.4.0
Synopsis
Create and delete instance of Azure Backup Policy.
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.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:
|
|
Defines the type of resource the policy will be applied to. 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 or Managed Identity (msi). Can also be set via the |
|
For cloud environments other than the US public cloud, the environment name (as defined by Azure Python SDK, eg, Default: |
|
The amount of days to retain backups. Does not apply to Weekly frequency. |
|
Determines whether or not instance discovery is performed when attempting to authenticate. Setting this to true will completely disable both instance discovery and authority validation. This functionality is intended for use in scenarios where the metadata endpoint cannot be reached such as in private clouds or Azure Stack. The process of instance discovery entails retrieving authority metadata from https://login.microsoft.com/ to validate the authority. By setting this to **True**, the validation of the authority is disabled. As a result, it is crucial to ensure that the configured authority host is valid and trustworthy. Set via credential file profile or the Choices:
|
|
How many days to retain instant recovery snapshots. |
|
Parent argument. |
|
Parent argument. |
|
The amount of months to retain backups. Requires either the retention_weekdays+retention_weeks_of_the_month pair (Weekly format) or the retention_days_of_the_month/retention_include_last_day pair (Daily format). Set one pair; the two pairs are mutually exclusive. |
|
List of months of the year to retain backups for yearly retention. Valid values are full month names (January, February, …). |
|
The name of the backup policy. |
|
Direct OpenID Connect (OIDC) token (JWT) used for workload identity authentication. This token is exchanged with Azure AD using OIDC federated identity. Useful in CI systems (for example GitHub Actions, Azure DevOps) where an OIDC token is provided directly by the platform. Can also be set via the |
|
Path to a file containing an OpenID Connect (OIDC) token (JWT) used for workload identity authentication. The file must contain only raw token. This method is commonly used in platforms that materialize OIDC tokens as files Can also be set via the |
|
Active Directory user password. Use when authenticating with an Active Directory user rather than service principal. |
|
Defines the type of backup policy Choices:
|
|
Security profile found in ~/.azure/credentials file. |
|
The name of the resource group the vault is in. |
|
Days of the month to retain monthly/yearly backups on (Daily format). Use 1-28 to guarantee the day exists in every month; values 29, 30, and 31 are accepted but the backup is skipped in months that do not have that day. To also retain the last day of every month regardless of length, set retention_include_last_day=true. Mutually exclusive with retention_weekdays and retention_weeks_of_the_month. |
|
Include the last day of every month in the Daily-format retention set, regardless of month length. Use with retention_days_of_the_month (or on its own to retain only the last day of each month). Choices:
|
|
Days of the week to retain monthly/yearly backups on (Weekly format). Use with retention_weeks_of_the_month. Mutually exclusive with retention_days_of_the_month and retention_include_last_day. |
|
Weeks of the month to retain monthly/yearly backups on (Weekly format). Valid values are First, Second, Third, Fourth, Last. Use with retention_weekdays. |
|
List of days to execute the schedule. Does not apply to Daily frequency. |
|
The frequency to run the policy. Choices:
|
|
The hour to run backups. Valid choices are on 24 hour scale (0-23). |
|
The amount of weeks between backups. Backup every schedule_weekly_frequency week(s). Azure will default behavior to running weekly if this is left blank. Does not apply to Daily frequency. |
|
Azure client secret. Use when authenticating with a Service Principal. |
|
Assert the state of the backup policy. Use Choices:
|
|
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. |
|
Timezone to apply schedule_run_time. Default: |
|
The name of the Recovery Services Vault the policy belongs to. |
|
The amount of weeks to retain backups. |
|
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. |
|
The amount of years to retain backups. Requires months_of_year and one of the two format pairs described in monthly_retention_count. |
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 OIDC, pass client_id, tenant and oidc_token or oidc_token_file_path, or set environment variables AZURE_CLIENT_ID, AZURE_TENANT and AZURE_FEDERATED_TOKEN or AZURE_FEDERATED_TOKEN_FILE.
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 logincommand.
Examples
- name: Delete a backup policy
azure_rm_backuppolicy:
vault_name: Vault_Name
name: Policy_Name
resource_group: Resource_Group_Name
state: absent
- name: Create a daily VM backup policy
azure_rm_backuppolicy:
vault_name: Vault_Name
name: Policy_Name
resource_group: Resource_Group_Name
state: present
backup_management_type: "AzureIaasVM"
schedule_run_frequency: "Daily"
instant_recovery_snapshot_retention: 2
daily_retention_count: 12
time_zone: "Pacific Standard Time"
schedule_run_time: 14
- name: Create a weekly VM backup policy
azure.azcollection.azure_rm_backuppolicy:
vault_name: Vault_Name
name: Policy_Name
resource_group: Resource_Group_Name
state: present
backup_management_type: "AzureIaasVM"
schedule_run_frequency: "Weekly"
instant_recovery_snapshot_retention: 5
weekly_retention_count: 4
schedule_days:
- "Monday"
- "Wednesday"
- "Friday"
time_zone: "Pacific Standard Time"
schedule_run_time: 8
- name: Create daily enhanced policy
azure.azcollection.azure_rm_backuppolicy:
vault_name: Vault_Name
name: Policy_Name_Enhanced
resource_group: Resource_Group_Name
policy_type: V2
state: present
backup_management_type: AzureIaasVM
schedule_run_frequency: Daily
instant_recovery_snapshot_retention: 7
daily_retention_count: 28
time_zone: UTC
schedule_run_time: 20
- name: Create a daily VM backup policy with monthly and yearly retention
azure_rm_backuppolicy:
vault_name: Vault_Name
name: Policy_Name
resource_group: Resource_Group_Name
state: present
backup_management_type: "AzureIaasVM"
schedule_run_frequency: "Daily"
instant_recovery_snapshot_retention: 2
daily_retention_count: 12
schedule_run_time: 14
monthly_retention_count: 12
yearly_retention_count: 5
months_of_year:
- January
retention_weekdays:
- Sunday
retention_weeks_of_the_month:
- Last
- name: Create a daily VM backup policy with monthly retention on specific days of the month
azure_rm_backuppolicy:
vault_name: Vault_Name
name: Policy_Name
resource_group: Resource_Group_Name
state: present
backup_management_type: "AzureIaasVM"
schedule_run_frequency: "Daily"
instant_recovery_snapshot_retention: 2
daily_retention_count: 12
schedule_run_time: 14
monthly_retention_count: 6
retention_days_of_the_month:
- 1
- 15
retention_include_last_day: true
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
Id of specified backup policy. Returned: always Sample: |
|
Location of backup policy. Returned: always Sample: |
|
Name of backup policy. Returned: always Sample: |
|
Attributes of the backup policy. Returned: always Sample: |
|
Type of backup policy. Returned: always Sample: |