mirror of
https://gitea.fenix-dev.com/fenix-gitea-admin/iac-opentofu-private.git
synced 2025-10-27 07:43:07 +00:00
35 lines
751 B
HCL
35 lines
751 B
HCL
variable "vaultwarden_server" {
|
|
description = "Vaultwarden server URL"
|
|
type = string
|
|
sensitive = false
|
|
}
|
|
|
|
variable "vaultwarden_email" {
|
|
description = "Vaultwarden login email"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "vaultwarden_master_password" {
|
|
description = "Vaultwarden master password"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "vaultwarden_admin_token" {
|
|
description = "Vaultwarden admin token"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "vaultwarden_client_id" {
|
|
description = "Vaultwarden client id"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "vaultwarden_client_secret" {
|
|
description = "Vaultwarden client secret"
|
|
type = string
|
|
sensitive = true
|
|
} |