[contrib] terraform openstack: allow disabling port security (#8410)

This commit is contained in:
Cristian Calin
2022-01-14 22:58:32 +02:00
committed by GitHub
parent 1a69f8c3ad
commit ea44d64511
7 changed files with 52 additions and 27 deletions

View File

@@ -148,6 +148,12 @@ variable "use_neutron" {
default = 1
}
variable "port_security_enabled" {
description = "Enable port security on the internal network"
type = bool
default = "true"
}
variable "subnet_cidr" {
description = "Subnet CIDR block."
type = string