From 197e28343298510112829fef375c0b7500d86370 Mon Sep 17 00:00:00 2001 From: EnricoGuccii Date: Mon, 1 Jun 2026 21:25:48 +0200 Subject: terraform: added observability --- terraform/modules/observability/variables.tf | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 terraform/modules/observability/variables.tf (limited to 'terraform/modules/observability/variables.tf') 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"] +} -- cgit v1.2.3