mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
cli: ignore name changes on lb public ip resource (#2117)
Changing the name forces a recreate, which would break existing clusters. The name change seems to be "only" about having clearer names.
This commit is contained in:
parent
2660c1aa87
commit
c2849f4bbe
@ -77,6 +77,10 @@ resource "azurerm_public_ip" "loadbalancer_ip" {
|
||||
allocation_method = "Static"
|
||||
sku = "Standard"
|
||||
tags = local.tags
|
||||
|
||||
lifecycle {
|
||||
ignore_changes = [name]
|
||||
}
|
||||
}
|
||||
|
||||
resource "azurerm_public_ip" "nat_gateway_ip" {
|
||||
|
Loading…
Reference in New Issue
Block a user