1234567891011121314151617 |
- resource "hcloud_floating_ip" "balancer0" {
- type = "ipv4"
- home_location = "fsn1"
- description = "balancer0"
- lifecycle {
- prevent_destroy = true
- }
- }
-
- resource "hcloud_floating_ip" "balancer1" {
- type = "ipv4"
- home_location = "fsn1"
- description = "balancer1"
- lifecycle {
- prevent_destroy = true
- }
- }
|