mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-29 09:32:39 +00:00
23 lines
567 B
HCL
23 lines
567 B
HCL
|
|
resource "openstack_images_image_v2" "talos" {
|
|
for_each = { for idx, name in var.regions : name => idx }
|
|
region = each.key
|
|
name = "talos"
|
|
container_format = "bare"
|
|
disk_format = "raw"
|
|
min_disk_gb = 5
|
|
min_ram_mb = 1
|
|
tags = ["talos-1.4.6"]
|
|
|
|
properties = {
|
|
hw_qemu_guest_agent = "no"
|
|
hw_firmware_type = "uefi"
|
|
hw_disk_bus = "scsi"
|
|
hw_scsi_model = "virtio-scsi"
|
|
support_rtm = "no"
|
|
}
|
|
|
|
visibility = "private"
|
|
local_file_path = "disk.raw"
|
|
}
|