fix: do not make subnetpool default to avoid permission issues on public cloud

This commit is contained in:
Bertrand Lanson 2024-04-07 17:34:22 +02:00
parent ff1677c926
commit a3468a6279

View File

@ -21,7 +21,7 @@ data "openstack_identity_project_v3" "this" {
resource "openstack_networking_subnetpool_v2" "this" {
count = var.create_subnetpool ? 1 : 0
name = "${var.project_name}-subnetpool"
is_default = true
is_default = false
ip_version = 4
prefixes = var.subnetpool_cidr_blocks
}