|
123456789101112131415 |
- resource "hcloud_server" "vms" {
- name = each.key
- image = var.server_image
- server_type = var.default_server_type
- location = var.default_location
- ssh_keys = [for value in hcloud_ssh_key.ssh_keys: value.id]
-
- lifecycle {
- ignore_changes = [
- ssh_keys,
- ]
- }
-
- for_each = var.vms
- }
|