Ubuntu 24.04 data file.

This commit is contained in:
Andrea Dell'Amico 2024-12-02 16:01:42 +01:00
parent a56d6c79c4
commit 541144bed0
Signed by: adellam
GPG Key ID: 147ABE6CEB9E20FF
2 changed files with 12 additions and 0 deletions

View File

@ -44,6 +44,10 @@ output "ubuntu_2204" {
value = var.ubuntu_2204
}
output "ubuntu_2404" {
value = var.ubuntu_2404
}
output "centos_7" {
value = var.centos_7
}
@ -56,6 +60,10 @@ output "ubuntu2204_data_file" {
value = var.ubuntu2204_data_file
}
output "ubuntu2404_data_file" {
value = var.ubuntu2404_data_file
}
output "el7_data_file" {
value = var.el7_data_file
}

View File

@ -76,6 +76,10 @@ variable "ubuntu2204_data_file" {
default = "../../s2i2s_openstack_vm_data_scripts/ubuntu2204.sh"
}
variable "ubuntu2404_data_file" {
default = "../../s2i2s_openstack_vm_data_scripts/ubuntu2404.sh"
}
variable "el7_data_file" {
default = "../../s2i2s_openstack_vm_data_scripts/el.sh"
}