You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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
- }
|