Skip to content

Commit

Permalink
Update resources-vars.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
kinjelom authored and rkoster committed Jun 12, 2023
1 parent 8200d9b commit 6a500a2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions terraform/openstack/templates/resources-vars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,23 @@ variable "ext_net_name" {
variable "region_name" {
description = "OpenStack region name"
}

variable "subnet_cidr" {
description = "CIDR representing IP range for this subnet, IPv4"
default = "10.0.1.0/24"
}

variable "subnet_allocation_pool_start" {
description = "The start IP address available for use with DHCP in this subnet, each IP range must be from the same CIDR that the subnet is part of"
default = "10.0.1.200"
}

variable "subnet_allocation_pool_end" {
description = "The end IP address available for use with DHCP in this subnet, each IP range must be from the same CIDR that the subnet is part of"
default = "10.0.1.254"
}

variable "subnet_gateway_ip" {
description = "Default gateway used by devices in this subnet"
default = "10.0.1.1"
}

0 comments on commit 6a500a2

Please sign in to comment.