terraform-modules/secrets-manager/variables.tf
2025-05-06 09:30:27 +02:00

19 lines
No EOL
462 B
HCL

variable "stackit_project_id" {
description = "ID of the stackit Project"
type = string
}
variable "secret_manager_name" {
description = "the name of the secret manager instance"
type = string
}
variable "secret_manager_user_desc" {
description = "role description for the secret manager user"
type = string
}
variable "secret_manager_user_write_enabled" {
description = "gives user write permissions"
type = bool
}