terraform-provider-azurerm
terraform-provider-azurerm copied to clipboard
New resource `azurerm_ip_group_cidr`
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"
}
@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.
Superseded by https://github.com/hashicorp/terraform-provider-azurerm/pull/17321
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.