terraform-provider-azurerm icon indicating copy to clipboard operation
terraform-provider-azurerm copied to clipboard

New resource `azurerm_ip_group_cidr`

Open tiwood opened this issue 2 years ago • 1 comments

This adds a new resource that allows us to manage the CIDRs/IPs in an existing IP Group

Example Usage

resource "azurerm_resource_group" "example" {
  name     = "test-rg"
  location = "West Europe"
}

resource "azurerm_ip_group" "example" {
  name                = "test-ipgroup"
  location            = azurerm_resource_group.test.location
  resource_group_name = azurerm_resource_group.test.name
}

resource "azurerm_ip_group_cidr" "example" {
  ip_group_id = azurerm_ip_group.example.id
  cidr        = "10.10.10.0/24"
}

CleanShot 2022-06-21 at 3 59 29

tiwood avatar Jun 21 '22 13:06 tiwood

@katbyte @tombuildsstuff can some1 take a look?

We need a way to add/remove from CIDR groups programmatically and might need to use a custom built provider if its unclear if this gets merged into the official provider.

tiwood avatar Aug 10 '22 13:08 tiwood

Superseded by https://github.com/hashicorp/terraform-provider-azurerm/pull/17321

katbyte avatar Jan 30 '23 22:01 katbyte

I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active contributions. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

github-actions[bot] avatar Mar 02 '23 02:03 github-actions[bot]