Skip to content
Snippets Groups Projects
Unverified Commit 1b0326f7 authored by Hugo Blom's avatar Hugo Blom Committed by GitHub
Browse files

do not apply floating IP's before router port is created (#6887)

parent 93a16930
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,7 @@ module "ips" {
router_id = module.network.router_id
k8s_nodes = var.k8s_nodes
k8s_master_fips = var.k8s_master_fips
router_internal_port_id = module.network.router_internal_port_id
}
module "compute" {
......
......@@ -2,6 +2,9 @@ resource "null_resource" "dummy_dependency" {
triggers = {
dependency_id = var.router_id
}
depends_on = [
var.router_internal_port_id
]
}
# If user specifies pre-existing IPs to use in k8s_master_fips, do not create new ones.
......
......@@ -19,3 +19,5 @@ variable "router_id" {
variable "k8s_nodes" {}
variable "k8s_master_fips" {}
variable "router_internal_port_id" {}
......@@ -242,6 +242,11 @@ variable "router_id" {
default = null
}
variable "router_internal_port_id" {
description = "uuid of the port connection our router to our network"
default = null
}
variable "k8s_nodes" {
default = {}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment