fix: do not make subnetpool default to avoid permission issues on public cloud
This commit is contained in:
parent
ff1677c926
commit
a3468a6279
2
main.tf
2
main.tf
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user