Adding addtinal files

This commit is contained in:
Ryan Toler
2024-10-02 01:29:06 -05:00
parent 216f3bb81d
commit 43647d5eb2
11 changed files with 319 additions and 0 deletions

49
full-clone.tf Normal file
View File

@@ -0,0 +1,49 @@
# Proxmox Full-Clone
# ---
# Create a new VM from a clone
#resource "proxmox_vm_qemu" "your-vm" {
#
# # VM General Settings
# target_node = "your-proxmox-node"
# vmid = "100"
# name = "vm-name"
# desc = "Description"
# VM Advanced General Settings
# onboot = true
# VM OS Settings
# clone = "your-clone"
# VM System Settings
# agent = 1
# VM CPU Settings
#cores = 1
#sockets = 1
#cpu = "host"
# VM Memory Settings
#memory = 1024
# VM Network Settings
#network {
# bridge = "vmbr0"
# model = "virtio"
#}
# VM Cloud-Init Settings
#os_type = "cloud-init"
# (Optional) IP Address and Gateway
# ipconfig0 = "ip=0.0.0.0/0,gw=0.0.0.0"
# (Optional) Default User
# ciuser = "your-username"
# (Optional) Add your SSH KEY
# sshkeys = <<EOF
# #YOUR-PUBLIC-SSH-KEY
# EOF
#}