Skip to content

Commit

Permalink
Fix openstack terraform rendered_lb_config issue (#513)
Browse files Browse the repository at this point in the history
Signed-off-by: Artiom Diomin <[email protected]>
  • Loading branch information
kron4eg authored and kubermatic-bot committed Jun 27, 2019
1 parent b1e9557 commit 0da7ec7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/terraform/openstack/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ locals {
resource "null_resource" "lb_config" {
triggers = {
cluster_instance_ids = join(",", openstack_compute_instance_v2.control_plane.*.id)
config = rendered_lb_config
config = local.rendered_lb_config
}

connection {
Expand All @@ -190,7 +190,7 @@ resource "null_resource" "lb_config" {
}

provisioner "file" {
content = rendered_lb_config
content = local.rendered_lb_config
destination = "/tmp/gobetween.toml"
}

Expand Down

0 comments on commit 0da7ec7

Please sign in to comment.