From 6eb3ed4c53c1803c2e96f9f8b5bffe1ab64b0e9b Mon Sep 17 00:00:00 2001 From: miampf Date: Thu, 2 Jan 2025 11:49:32 +0100 Subject: [PATCH] adjust `emergency_ssh` variable description --- terraform/infrastructure/aws/variables.tf | 2 +- terraform/infrastructure/azure/variables.tf | 2 +- terraform/infrastructure/gcp/variables.tf | 2 +- terraform/infrastructure/openstack/variables.tf | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/terraform/infrastructure/aws/variables.tf b/terraform/infrastructure/aws/variables.tf index f9966a8b8..d55dedabb 100644 --- a/terraform/infrastructure/aws/variables.tf +++ b/terraform/infrastructure/aws/variables.tf @@ -89,5 +89,5 @@ variable "additional_tags" { variable "emergency_ssh" { type = bool default = false - description = "Wether to deploy a load balancer to connect to nodes via ssh." + description = "Wether to expose the SSH port through the public load balancer." } diff --git a/terraform/infrastructure/azure/variables.tf b/terraform/infrastructure/azure/variables.tf index e28558068..64a02a35d 100644 --- a/terraform/infrastructure/azure/variables.tf +++ b/terraform/infrastructure/azure/variables.tf @@ -105,5 +105,5 @@ variable "additional_tags" { variable "emergency_ssh" { type = bool default = false - description = "Wether to deploy a load balancer to connect to nodes via ssh." + description = "Wether to expose the SSH port through the public load balancer." } diff --git a/terraform/infrastructure/gcp/variables.tf b/terraform/infrastructure/gcp/variables.tf index dd328485c..b62b975db 100644 --- a/terraform/infrastructure/gcp/variables.tf +++ b/terraform/infrastructure/gcp/variables.tf @@ -79,5 +79,5 @@ variable "additional_labels" { variable "emergency_ssh" { type = bool default = false - description = "Wether to deploy a load balancer to connect to nodes via ssh." + description = "Wether to expose the SSH port through the public load balancer." } diff --git a/terraform/infrastructure/openstack/variables.tf b/terraform/infrastructure/openstack/variables.tf index b7f639bd5..3afa8c97a 100644 --- a/terraform/infrastructure/openstack/variables.tf +++ b/terraform/infrastructure/openstack/variables.tf @@ -75,5 +75,5 @@ variable "stackit_project_id" { variable "emergency_ssh" { type = bool default = false - description = "Wether to deploy a load balancer to connect to nodes via ssh." + description = "Wether to expose the SSH port through the public load balancer." }