aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKumar Damani <me@kumardamani.net>2026-09-15 21:22:30 +0000
committerKumar Damani <me@kumardamani.net>2026-09-15 21:22:30 +0000
commit032bbaba7832db2c9de01c3ede4442c1bf93725e (patch)
tree6c6f2794f7ec7e018f16fac27362d9ba87f8f06d
parent0d5631334b3d0a0d4e1cc5b4cff8a4c4fcc1f760 (diff)
rm old monitoringHEADmain
-rwxr-xr-xterraform/main.tf35
-rwxr-xr-xterraform/variables.tf5
2 files changed, 0 insertions, 40 deletions
diff --git a/terraform/main.tf b/terraform/main.tf
index 9d5f5f4..d148a4b 100755
--- a/terraform/main.tf
+++ b/terraform/main.tf
@@ -1,38 +1,3 @@
-resource "proxmox_lxc" "monitoring" {
- target_node = "hesh"
- hostname = "monitoring"
- ostemplate = "local:vztmpl/debian-12-standard_12.0-1_amd64.tar.zst"
- password = "${var.monitoring_password}"
- unprivileged = false
- cores = 1
- cpulimit = 2
- memory = 1024
- start = true
- onboot = true
- startup = "order=3"
-
- ssh_public_keys = <<-EOT
- ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM9ONfhaHpY0bSk3o81H/eEp+UxQ9RCszJ7p3f+rvcpH kdam0@art-sr
- EOT
-
- rootfs {
- storage = "local-lvm"
- size = "10G"
- }
-
- features {
- nesting = true
- }
-
- network {
- name = "eth0"
- bridge = "vmbr1"
- tag = 30
- ip = "dhcp"
- mtu = "1420"
- }
-}
-
resource "proxmox_lxc" "plex" {
target_node = "hesh"
hostname = "plex"
diff --git a/terraform/variables.tf b/terraform/variables.tf
index 81e81ab..7476748 100755
--- a/terraform/variables.tf
+++ b/terraform/variables.tf
@@ -1,8 +1,3 @@
-variable "monitoring_password" {
- type = string
- sensitive = true
- description = "Secret key for monitoring"
-}
variable "plex_password" {
type = string
sensitive = true