reverting accidental changes to grail.tf

This commit is contained in:
tolerryan
2024-12-09 23:16:39 -06:00
parent e41af39a1c
commit 4b688e80d4
2 changed files with 28 additions and 20 deletions

View File

@@ -26,19 +26,27 @@ resource "proxmox_vm_qemu" "grail" {
asyncio = "threads" asyncio = "threads"
discard = true discard = true
iothread = true iothread = true
size = "128G" size = "42G"
emulatessd = true emulatessd = true
} }
} }
} }
# ide { ide {
# ide2 { ide2 {
# cloudinit { cloudinit {
# storage = "Cephtest" storage = "Cephtest"
# } }
# } }
# } }
# } }
#mountpoint{
# key = "0"
# slot = 0
# storage = "Cephtest"
# mp = "/data"
# size = "400G"
#}
network { network {
# Name is set automatically based on position in file # Name is set automatically based on position in file
@@ -51,7 +59,7 @@ resource "proxmox_vm_qemu" "grail" {
provisioner "local-exec" { provisioner "local-exec" {
command = "./.ansible.d/setup.sh $IP" command = "./.ansible.d/setup.sh $IP"
environment = { environment = {
IP = "192.168.0.58" IP = "192.168.0.57"
} }
} }

View File

@@ -19,21 +19,21 @@ resource "proxmox_lxc" "promgraph" {
rootfs { rootfs {
storage = "nvme" storage = "nvme"
size = "32G" size = "128G"
} }
mountpoint{ # mountpoint{
key = "0" # key = "0"
slot = 0 # slot = 0
storage = "Cephtest" # storage = "Cephtest"
mp = "/data" # mp = "/data"
size = "400G" # size = "400G"
} #}
network { network {
name = "eth0" name = "eth0"
bridge = "vmbr0" bridge = "vmbr0"
ip = "AM617831508CN/24" ip = "192.168.0.58/24"
gw = "192.168.0.1" gw = "192.168.0.1"
} }
@@ -41,7 +41,7 @@ resource "proxmox_lxc" "promgraph" {
provisioner "local-exec" { provisioner "local-exec" {
command = "./.ansible.d/setup.sh $IP" command = "./.ansible.d/setup.sh $IP"
environment = { environment = {
IP = "192.168.0.56" IP = "192.168.0.58"
} }
} }