You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
915 B
HCL
23 lines
915 B
HCL
################################################################################
|
|
# Libvirt Images
|
|
# These outputs are really more like constants. Using outputs improves
|
|
# readability. The values are manually updated.
|
|
################################################################################
|
|
|
|
output "ubuntu-img" {
|
|
value = "https://cloud-images.ubuntu.com/releases/focal/release/ubuntu-20.04-server-cloudimg-amd64-disk-kvm.img"
|
|
description = "The libvirt image to use for Ubuntu."
|
|
}
|
|
|
|
output "centos7-img" {
|
|
# Latest as of 2021-12-06.
|
|
value = "https://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud-2111.qcow2"
|
|
description = "The libvirt image to use for CentOS 7."
|
|
}
|
|
|
|
output "centos8-img" {
|
|
value = "https://cloud.centos.org/centos/8/x86_64/images/CentOS-8-GenericCloud-8.4.2105-20210603.0.x86_64.qcow2"
|
|
description = "The libvirt image to use for CentOS 8."
|
|
}
|
|
|