terraform-strongswan-deploy.../01-variables.tf
Mauritz Uphoff fb87dbaaca
All checks were successful
CI / TruffleHog Secrets Scan (push) Successful in 5s
CI / Terraform Format & Validate (push) Successful in 7s
Initial commit
2025-07-02 11:11:22 +02:00

26 lines
No EOL
555 B
HCL

variable "stackit_project_id" {
type = string
/*default = "XXXXX-XXXX-XXXX-XXXX-XXXXXXX"*/
default = "d75e6aab-b616-4b42-ae3b-aaf161ad626d"
}
variable "stackit_region" {
type = string
default = "eu01"
}
variable "stackit_service_account_key_path" {
type = string
default = "./keys/stackit-sa.json"
}
variable "debian_image_id" {
type = string
default = "b7aedfad-3be7-46e0-9ece-19fd50e2d83e"
}
variable "vpn_psk" {
type = string
description = "Pre-Shared Key for IPsec VPN"
default = "yoursecurekey123456"
}