matrixtest-IaC/images.tf

13 lines
309 B
Terraform
Raw Normal View History

# Default os version
2024-01-11 13:52:05 +00:00
data "openstack_images_image_v2" "debian12image" {
name = "debian-12" # Name of image to be used
most_recent = true
}
# Primary for microk8s
data "openstack_images_image_v2" "ubuntu2204image" {
name = "ubuntu-22.04" # Name of image to be used
most_recent = true
}