mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-08 11:05:31 -05:00
add emergency_ssh var to other providers (untested)
This commit is contained in:
parent
4ae2df6c7f
commit
71fc0eb47f
@ -29,6 +29,7 @@ locals {
|
||||
{ name = "recovery", port = "9999", health_check = "TCP" },
|
||||
{ name = "join", port = "30090", health_check = "TCP" },
|
||||
var.debug ? [{ name = "debugd", port = "4000", health_check = "TCP" }] : [],
|
||||
var.emergency_ssh ? [{ name = "ssh", port = "22", health_check = "TCP" }] : [],
|
||||
])
|
||||
target_group_arns = {
|
||||
control-plane : [
|
||||
|
@ -85,3 +85,9 @@ variable "additional_tags" {
|
||||
default = {}
|
||||
description = "Additional tags that should be applied to created resources."
|
||||
}
|
||||
|
||||
variable "emergency_ssh" {
|
||||
type = bool
|
||||
default = false
|
||||
description = "Wether to deploy a load balancer to connect to nodes via ssh."
|
||||
}
|
||||
|
@ -40,6 +40,7 @@ locals {
|
||||
{ name = "recovery", port = "9999", health_check = "TCP" },
|
||||
{ name = "join", port = "30090", health_check = "TCP" },
|
||||
var.debug ? [{ name = "debugd", port = "4000", health_check = "TCP" }] : [],
|
||||
var.emergency_ssh ? [{ name = "ssh", port = "22", health_check = "TCP" }] : [],
|
||||
])
|
||||
node_groups_by_role = {
|
||||
for name, node_group in var.node_groups : node_group.role => name...
|
||||
|
@ -75,3 +75,9 @@ variable "additional_labels" {
|
||||
default = {}
|
||||
description = "Additional labels that should be given to created recources."
|
||||
}
|
||||
|
||||
variable "emergency_ssh" {
|
||||
type = bool
|
||||
default = false
|
||||
description = "Wether to deploy a load balancer to connect to nodes via ssh."
|
||||
}
|
||||
|
@ -43,6 +43,7 @@ locals {
|
||||
{ name = "recovery", port = "9999", health_check = "TCP" },
|
||||
{ name = "join", port = "30090", health_check = "TCP" },
|
||||
var.debug ? [{ name = "debugd", port = "4000", health_check = "TCP" }] : [],
|
||||
var.emergency_ssh ? [{ name = "ssh", port = "22", health_check = "TCP" }] : [],
|
||||
])
|
||||
cidr_vpc_subnet_nodes = "192.168.178.0/24"
|
||||
cidr_vpc_subnet_lbs = "192.168.177.0/24"
|
||||
|
@ -71,3 +71,9 @@ variable "stackit_project_id" {
|
||||
type = string
|
||||
description = "STACKIT project ID."
|
||||
}
|
||||
|
||||
variable "emergency_ssh" {
|
||||
type = bool
|
||||
default = false
|
||||
description = "Wether to deploy a load balancer to connect to nodes via ssh."
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user