Refactor SSH connection check step to clarify purpose

This commit is contained in:
2024-09-24 21:47:11 +02:00
parent 23880cc025
commit 10940b64fd
32 changed files with 2 additions and 2 deletions
+89
View File
@@ -0,0 +1,89 @@
variable "wordpress_mysql_password" {
description = "MySQL access password"
type = string
}
variable "mysql_root_password" {
description = "MySQL root password"
type = string
}
variable "gitea_mysql_password" {
description = "MySQL access password"
type = string
}
variable "scaleway_access_key" {
description = "Scaleway Access key"
type = string
}
variable "scaleway_secret_key" {
description = "Scaleway Secret key"
type = string
}
variable "scaleway_project_id" {
description = "Scaleway Project Id"
type = string
}
variable "scaleway_organization_id" {
description = "Scaleway Organization Id"
type = string
}
variable "nextcloud_mysql_password" {
description = "MySQL access password"
type = string
}
variable "nextcloud_admin_password" {
description = "Nextcloud access password"
type = string
}
variable "collabora_admin_password" {
description = "Collabora access password"
type = string
}
variable "wireguard_private_key" {
description = "Wireguard public key"
type = string
}
variable "wireguard_public_key" {
description = "Wireguard public key"
type = string
}
variable "m3uproxy_admin_password" {
description = "M3UProxy access password"
type = string
}
variable "m3uproxy_secret" {
description = "M3UProxy HMAC secret"
type = string
}
variable "k8s_host" {
description = "K8S host"
type = string
}
variable "k8s_client_certificate" {
description = "K8S client certificate"
type = string
}
variable "k8s_client_key" {
description = "K8S client key"
type = string
}
variable "k8s_cluster_ca_certificate" {
description = "K8S cluster CA certificate"
type = string
}