您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

6 行
129B

  1. resource "hcloud_ssh_key" "ssh_keys" {
  2. name = each.value
  3. public_key = file(each.value)
  4. for_each = var.ssh_keys_filenames
  5. }