summaryrefslogtreecommitdiff
path: root/terraform/modules/observability/variables.tf
diff options
context:
space:
mode:
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"]
+}