Add support for Ubuntu 24.04 at GARR.
This commit is contained in:
parent
2a3e70cea2
commit
b6e3efb344
|
@ -7,6 +7,14 @@ output "ubuntu2204_data_file" {
|
|||
value = var.ubuntu2204_data_file
|
||||
}
|
||||
|
||||
output "ubuntu_2404" {
|
||||
value = var.ubuntu_2404
|
||||
}
|
||||
|
||||
output "ubuntu2404_data_file" {
|
||||
value = var.ubuntu2404_data_file
|
||||
}
|
||||
|
||||
output "ssh_sources" {
|
||||
value = var.ssh_sources
|
||||
}
|
||||
|
|
|
@ -11,6 +11,18 @@ variable "ubuntu2204_data_file" {
|
|||
default = "../../openstack_vm_data_scripts/ubuntu2204.sh"
|
||||
}
|
||||
|
||||
variable "ubuntu_2404" {
|
||||
type = map(string)
|
||||
default = {
|
||||
name = "Ubuntu 24.04 - GARR"
|
||||
uuid = "b2f00e68-3847-4f48-a8a6-b28012d57095"
|
||||
user_data_file = "../../openstack_vm_data_scripts/ubuntu2404.sh"
|
||||
}
|
||||
}
|
||||
|
||||
variable "ubuntu2404_data_file" {
|
||||
default = "../../openstack_vm_data_scripts/ubuntu2404.sh"
|
||||
}
|
||||
# Create in the path 'modules/ssh-key-ref' the file 'ssh-key-ref-outputs.tf'
|
||||
# with the following outputs:
|
||||
|
||||
|
|
Loading…
Reference in New Issue