Add worker_allowed_ports

* [contrib/terraform/openstack] Add worker_allowed_ports

  Allow user to define in terraform template which ports and remote
  IPs that are allowed to access worker nodes. This is useful when you
  don't want to open up whole NodePort range to the outside world, or
  ports outside NodePort range.
This commit is contained in:
Andreas Holmsten
2018-10-31 12:09:22 +01:00
parent d269e7f46c
commit 6c34745958
5 changed files with 23 additions and 4 deletions

View File

@@ -73,3 +73,7 @@ variable "supplementary_master_groups" {
variable "supplementary_node_groups" {
default = ""
}
variable "worker_allowed_ports" {
type = "list"
}