Split up contabo provider vars

This commit is contained in:
Tobias Reisinger 2024-09-30 20:31:04 +02:00
parent 048ea26034
commit 48a4f72e4f
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
5 changed files with 42 additions and 19 deletions

View file

@ -28,13 +28,19 @@ variable "authentik_token" {
}
variable "contabo_provider_vars" {
type = object({
client_id = string
client_secret = string
user = string
pass = string
})
variable "contabo_client_id" {
sensitive = true
}
variable "contabo_client_secret" {
sensitive = true
}
variable "contabo_user" {
sensitive = true
}
variable "contabo_pass" {
sensitive = true
}