Merge pull request #2900 from drekle/configure_openstack_subnet_CIDR

Configure openstack subnet cidr
This commit is contained in:
Rong Zhang
2018-08-07 17:27:01 +08:00
committed by GitHub
5 changed files with 11 additions and 1 deletions

View File

@@ -103,6 +103,12 @@ variable "network_name" {
default = "internal"
}
variable "subnet_cidr" {
description = "Subnet CIDR block."
type = "string"
default = "10.0.0.0/24"
}
variable "dns_nameservers" {
description = "An array of DNS name server names used by hosts in this subnet."
type = "list"