feat(ssh_locker): implement ssh locker helper scripts and configuration for Duo API integration

This commit is contained in:
2025-05-22 22:55:27 +02:00
parent f6be1d5dbe
commit 071b4eea9e
13 changed files with 360 additions and 3 deletions
+16
View File
@@ -106,3 +106,19 @@ variable "gitea_jwt_secret" {
type = string
sensitive = true
}
variable "server_api_duo_client_id" {
description = "Duo client ID"
type = string
sensitive = true
}
variable "server_api_duo_client_secret" {
description = "Duo client secret"
type = string
sensitive = true
}
variable "server_api_access_token" {
description = "Access token for ssh_locker API"
type = string
sensitive = true
}