2024-09-28 19:15:56 +02:00
|
|
|
variable "scaleway_access_key" {
|
|
|
|
|
description = "Scaleway Access key"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "scaleway_secret_key" {
|
|
|
|
|
description = "Scaleway Secret key"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "scaleway_project_id" {
|
|
|
|
|
description = "Scaleway Project Id"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "scaleway_organization_id" {
|
|
|
|
|
description = "Scaleway Organization Id"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "scaleway_user_id" {
|
|
|
|
|
description = "Scaleway User Id"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-15 22:51:05 +01:00
|
|
|
# variable "contabo_client_id" {
|
|
|
|
|
# description = "Contabo Client ID"
|
|
|
|
|
# type = string
|
|
|
|
|
# sensitive = true
|
|
|
|
|
# }
|
2024-09-28 19:15:56 +02:00
|
|
|
|
2025-03-15 22:51:05 +01:00
|
|
|
# variable "contabo_client_secret" {
|
|
|
|
|
# description = "Contabo Client Secret"
|
|
|
|
|
# type = string
|
|
|
|
|
# sensitive = true
|
|
|
|
|
# }
|
2024-09-28 19:15:56 +02:00
|
|
|
|
2025-03-15 22:51:05 +01:00
|
|
|
# variable "contabo_api_password" {
|
|
|
|
|
# description = "Contabo API Password"
|
|
|
|
|
# type = string
|
|
|
|
|
# sensitive = true
|
|
|
|
|
# }
|
2024-09-28 19:15:56 +02:00
|
|
|
|
2025-03-15 22:51:05 +01:00
|
|
|
# variable "contabo_api_user" {
|
|
|
|
|
# description = "Contabo API User"
|
|
|
|
|
# type = string
|
|
|
|
|
# }
|
2024-09-28 19:15:56 +02:00
|
|
|
|
|
|
|
|
variable "encryption_key" {
|
|
|
|
|
description = "Encryption key for sensitive data"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "bucket_suffix" {
|
|
|
|
|
description = "Suffix for bucket names"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
2024-10-01 23:15:31 +02:00
|
|
|
|
|
|
|
|
variable "system_id" {
|
|
|
|
|
description = "System ID"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
2024-10-05 18:11:41 +02:00
|
|
|
|
|
|
|
|
variable "cloudns_auth_id" {
|
|
|
|
|
description = "Cloudns Auth ID"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "cloudns_password" {
|
|
|
|
|
description = "Cloudns Password"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "scaleway_dkim_key" {
|
|
|
|
|
description = "Scaleway DKIM key"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-24 09:36:39 +02:00
|
|
|
variable "alexpires_me_scaleway_dkim_value" {
|
|
|
|
|
description = "Scaleway DKIM value (alexpires.me)"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "a13labs_me_scaleway_dkim_value" {
|
|
|
|
|
description = "Scaleway DKIM value (a13labs.me)"
|
2024-10-05 18:11:41 +02:00
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|