選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

vms.tf 302B

123456789101112131415
  1. resource "hcloud_server" "vms" {
  2. name = each.key
  3. image = var.server_image
  4. server_type = var.default_server_type
  5. location = var.default_location
  6. ssh_keys = [for value in hcloud_ssh_key.ssh_keys: value.id]
  7. lifecycle {
  8. ignore_changes = [
  9. ssh_keys,
  10. ]
  11. }
  12. for_each = var.vms
  13. }