2023-07-05 14:58:06 +00:00
|
|
|
resource "openstack_images_image_v2" "cirros" {
|
|
|
|
name = "cirros"
|
|
|
|
local_file_path = "/home/arif/images/cirros-0.5.1-x86_64-disk.img"
|
|
|
|
container_format = "bare"
|
|
|
|
disk_format = "qcow2"
|
|
|
|
visibility = "public"
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "openstack_images_image_v2" "bionic-raw" {
|
|
|
|
name = "bionic-raw"
|
|
|
|
local_file_path = "/home/arif/images/bionic-server-cloudimg-amd64-raw.img"
|
|
|
|
container_format = "bare"
|
|
|
|
disk_format = "raw"
|
|
|
|
visibility = "public"
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "openstack_images_image_v2" "focal-raw" {
|
|
|
|
name = "focal-raw"
|
|
|
|
local_file_path = "/home/arif/images/focal-server-cloudimg-amd64-raw.img"
|
|
|
|
container_format = "bare"
|
|
|
|
disk_format = "raw"
|
|
|
|
visibility = "public"
|
|
|
|
}
|
2024-06-25 11:47:10 +00:00
|
|
|
|
|
|
|
resource "openstack_images_image_v2" "win2k12-r2-raw" {
|
|
|
|
name = "win2k12-r12-raw"
|
|
|
|
local_file_path = "/home/arif/images/windows_server_2012_r2_standard_eval_kvm_20170321.img"
|
|
|
|
container_format = "bare"
|
|
|
|
disk_format = "raw"
|
|
|
|
visibility = "public"
|
|
|
|
properties = {
|
|
|
|
"hypervisor_type" = "QEMU"
|
|
|
|
"os_type" = "windows"
|
|
|
|
}
|
|
|
|
}
|