Skip to content

Commit

Permalink
Merge pull request #57 from appuio/cloudscale/update-floating-ip-reso…
Browse files Browse the repository at this point in the history
…urces

vshn-lbaas-cloudscale: Remove provider-managed `next_hop` from `ignore_changes` for floating IPs
  • Loading branch information
simu authored Jul 18, 2024
2 parents 157dde2 + 52da07d commit 1e249fe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions modules/vshn-lbaas-cloudscale/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ resource "cloudscale_floating_ip" "api_vip" {
ignore_changes = [
# Will be handled by Keepalived (Ursula)
server,
next_hop,
]
}
}
Expand All @@ -29,7 +28,6 @@ resource "cloudscale_floating_ip" "router_vip" {
ignore_changes = [
# Will be handled by Keepalived (Ursula)
server,
next_hop,
]
}
}
Expand All @@ -50,7 +48,6 @@ resource "cloudscale_floating_ip" "nat_vip" {
ignore_changes = [
# Will be handled by Keepalived (Ursula)
server,
next_hop,
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion modules/vshn-lbaas-cloudscale/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
cloudscale = {
source = "cloudscale-ch/cloudscale"
version = ">= 3.0"
version = ">= 4.0"
}
random = {
source = "hashicorp/random"
Expand Down

0 comments on commit 1e249fe

Please sign in to comment.