aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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