Skip to content

sironite/terraform-azurerm-ip_group

Repository files navigation

IP Group

Changelog Notice Apache V2 License TF Registry

Usage - Module

IP Group

module "ip_group" {
  source  = "sironite/ip_group/azurerm"
  version = "x.x.x"

  ip_group_name       = var.ip_group_name
  azure_location      = var.azure_location
  resource_group_name = var.resource_group_name

  ip_group_cidrs = var.virtual_network_cidr
}

Providers

Name Version
azurerm >= 2.0.0

Modules

No modules.

Resources

Name Type
azurerm_ip_group.this resource

Inputs

Name Description Type Required
azure_location The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created. string yes
ip_group_cidrs A list of CIDRs or IP addresses. list(string) yes
ip_group_name Specifies the name of the IP group. Changing this forces a new resource to be created. string yes
resource_group_name The name of the resource group in which to create the IP group. Changing this forces a new resource to be created. string yes
ip_group_tags A mapping of tags to assign to the resource. map(any) no

Outputs

Name Description
ip_group_firewall_ids A firewall_ids block as defined below.
ip_group_firewall_policy_ids A firewall_policy_ids block as defined below.
ip_group_id The ID of the IP group.

Related documentation