diff options
| author | EnricoGuccii <partyka.003@proton.me> | 2026-06-01 21:24:10 +0200 |
|---|---|---|
| committer | EnricoGuccii <partyka.003@proton.me> | 2026-06-01 21:24:10 +0200 |
| commit | 4eb4f27112aa4774f58c35ad4173b149e0edbc4e (patch) | |
| tree | e598a8adbe4f02a1225839c0d6c75beb0bd4b6b1 /terraform/variables.tf | |
| parent | 949c0400134ad400997ad7f3ffaad8c8135579a3 (diff) | |
terraform: added seperate file for providers and variables update
Diffstat (limited to 'terraform/variables.tf')
| -rw-r--r-- | terraform/variables.tf | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/terraform/variables.tf b/terraform/variables.tf index 6610f25..4c23f69 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -1,5 +1,3 @@ -# Proxmox API - variable "proxmox_endpoint" { description = "Adres API Proxmox" type = string @@ -13,33 +11,8 @@ variable "proxmox_api_token" { } -# Node - variable "node_name" { description = "Nazwa node Proxmox" type = string default = "pve" } - - -# LXC - -variable "lxc_id" { - type = number - default = 200 -} - -variable "lxc_name" { - type = string - default = "terraform-lxc" -} - -variable "lxc_memory" { - type = number - default = 1024 -} - -variable "lxc_cores" { - type = number - default = 1 -} |