Browse Source

Change was not picked up

pull/2895/head
Derek Lemon 6 years ago
parent
commit
ab345c5f69
2 changed files with 7 additions and 4 deletions
  1. 5
      contrib/terraform/openstack/modules/network/variables.tf
  2. 6
      contrib/terraform/openstack/variables.tf

5
contrib/terraform/openstack/modules/network/variables.tf

@ -8,7 +8,4 @@ variable "dns_nameservers" {
type = "list"
}
variable "subnet_cidr" {
type = "string"
default = "10.0.0.0/24"
}
variable "subnet_cidr" {}

6
contrib/terraform/openstack/variables.tf

@ -97,6 +97,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"

Loading…
Cancel
Save