terraform-strongswan-deploy.../01-variables.tf
Mauritz Uphoff a09e9b21d0
Some checks failed
CI / Terraform Format & Validate (push) Failing after 7s
CI / TruffleHog Secrets Scan (push) Successful in 30s
dev
2025-07-06 19:23:40 +02:00

25 lines
No EOL
516 B
HCL

variable "stackit_organization_id" {
default = "03a34540-3c1a-4794-b2c6-7111ecf824ef"
type = string
}
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"
}