summaryrefslogtreecommitdiff
path: root/terraform/modules/observability/variables.tf
diff options
context:
space:
mode:
authorEnricoGuccii <partyka.003@proton.me>2026-06-01 21:25:48 +0200
committerEnricoGuccii <partyka.003@proton.me>2026-06-01 21:25:48 +0200
commit197e28343298510112829fef375c0b7500d86370 (patch)
tree5b2781ee19abde2fd6a07672a85c0d0dfb52acad /terraform/modules/observability/variables.tf
parent4eb4f27112aa4774f58c35ad4173b149e0edbc4e (diff)
terraform: added observabilityHEADmaster
Diffstat (limited to 'terraform/modules/observability/variables.tf')
-rw-r--r--terraform/modules/observability/variables.tf26
1 files changed, 26 insertions, 0 deletions
diff --git a/terraform/modules/observability/variables.tf b/terraform/modules/observability/variables.tf
new file mode 100644
index 0000000..fb998c8
--- /dev/null
+++ b/terraform/modules/observability/variables.tf
@@ -0,0 +1,26 @@
+variable "node_name" {
+ type = string
+}
+
+variable "lxc_id" {
+ type = number
+}
+
+variable "hostname" {
+ type = string
+ default = "lgtm-stack"
+}
+
+variable "ip_address" {
+ type = string
+}
+
+variable "gateway_ip" {
+ type = string
+ default = "192.168.0.1"
+}
+
+variable "ssh_keys" {
+ type = list(string)
+ default = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHB4jD3PVsg1edlMwBW6Hb/NYLnzEI8dyJQRnQQap45q enrico@cachyos"]
+}