add support for CentOS Stream 10
This commit is contained in:
22
environments/centos-10-cloud-bios/main.tf
Normal file
22
environments/centos-10-cloud-bios/main.tf
Normal file
@@ -0,0 +1,22 @@
|
||||
terraform {
|
||||
required_version = ">= 0.13"
|
||||
required_providers {
|
||||
libvirt = {
|
||||
source = "dmacvicar/libvirt"
|
||||
version = "0.8.3"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "libvirt" {
|
||||
uri = "qemu:///system"
|
||||
}
|
||||
|
||||
module "shared_modules" {
|
||||
source = "../../shared_modules"
|
||||
|
||||
vm_name = "cent10-bios"
|
||||
image_location = "https://cloud.centos.org/centos/10-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64-10-latest.x86_64.qcow2"
|
||||
ssh_key = "" # please provide a SSH public key
|
||||
enable_cloudinit = true
|
||||
}
|
||||
Reference in New Issue
Block a user