azure.azcollection.azure_rm_firewallpolicyrulecollectiongroup module – Manage rule collection groups of an Azure Firewall Policy
Note
This module is part of the azure.azcollection collection (version 3.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_firewallpolicyrulecollectiongroup.
New in azure.azcollection 3.19.0
Synopsis
Create, update or delete a rule collection group of an Azure Firewall Policy.
A rule collection group hosts an ordered list of filter and/or NAT rule collections, each of which contains application, network or NAT rules.
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:
|
|
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: |
|
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:
|
|
The name of the parent firewall policy. |
|
Parent argument. |
|
Parent argument. |
|
The name of the rule collection group. |
|
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. |
|
Priority of the rule collection group resource. Valid values are between |
|
Security profile found in ~/.azure/credentials file. |
|
Name of the resource group. |
|
Group of firewall policy rule collections. |
|
The action of the rule collection. Use Use Choices:
|
|
Name of the rule collection. |
|
Priority of the rule collection. Valid values are between |
|
The type of the rule collection. Choices:
|
|
Rules included in this rule collection. |
|
Description of the rule. |
|
List of destination IP addresses, CIDR ranges or service tags for this rule. |
|
List of destination FQDNs for this rule. Used by |
|
List of destination IP group resource IDs for this rule. Used by |
|
List of destination ports for this rule. Used by |
|
List of FQDN tags for this rule. Used by |
|
List of HTTP/S headers to insert. Used by |
|
The name of the header. |
|
The value of the header. |
|
List of IP protocols for this rule. Used by Choices:
|
|
Name of the rule. |
|
List of application protocols for this rule. Used by |
|
Port number for the protocol. Valid values are between |
|
Protocol type. Choices:
|
|
Type of the rule. A filter collection may contain A nat collection may contain Choices:
|
|
List of source IP addresses or CIDR ranges for this rule. |
|
List of source IP group resource IDs for this rule. |
|
List of destination FQDNs for this rule. Used by |
|
List of destination URLs for this rule. Used by |
|
Whether to terminate TLS connections for this rule. Used by Choices:
|
|
The translated address for this NAT rule. Used by |
|
The translated FQDN for this NAT rule. Used by |
|
The translated port for this NAT rule. Used by |
|
List of destination Azure web categories for this rule. Used by |
|
Azure client secret. Use when authenticating with a Service Principal. |
|
Assert the state of the rule collection group. 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. |
|
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 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: Create a rule collection group with filter and NAT collections
azure_rm_firewallpolicyrulecollectiongroup:
resource_group: myResourceGroup
firewall_policy_name: myFirewallPolicy
name: myRuleCollectionGroup
priority: 200
rule_collections:
- name: filterCollection
priority: 300
rule_collection_type: filter
action: allow
rules:
- name: allowWebApp
rule_type: application
source_addresses:
- 10.0.0.0/24
protocols:
- type: Https
port: 443
target_fqdns:
- "*.microsoft.com"
- name: allowNetwork
rule_type: network
ip_protocols:
- TCP
source_addresses:
- 10.0.0.0/24
destination_addresses:
- 192.168.1.0/24
destination_ports:
- "443"
- name: natCollection
priority: 400
rule_collection_type: nat
action: dnat
rules:
- name: dnatRule
rule_type: nat
ip_protocols:
- TCP
source_addresses:
- "*"
destination_addresses:
- 13.0.0.1
destination_ports:
- "443"
translated_address: 10.0.0.10
translated_port: "8443"
- name: Delete a rule collection group
azure_rm_firewallpolicyrulecollectiongroup:
resource_group: myResourceGroup
firewall_policy_name: myFirewallPolicy
name: myRuleCollectionGroup
state: absent
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
Current state of the rule collection group. Returned: always |
|
Resource ETag. Returned: always |
|
Resource ID of the rule collection group. Returned: always Sample: |
|
Name of the rule collection group. Returned: always Sample: |
|
Priority of the rule collection group. Returned: always Sample: |
|
Provisioning state of the resource. Returned: always Sample: |
|
Group of rule collections. Returned: always |
|
Resource type. Returned: always Sample: |