Move aws ses dkim keys into terraform

This commit is contained in:
Tobias Reisinger 2024-10-22 17:44:00 +02:00
parent e17156a8ca
commit 6f9f888478
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
12 changed files with 95 additions and 20 deletions

View file

@ -32,6 +32,19 @@ variable "authentik_token" {
}
variable "aws_region" {
default = "eu-north-1"
}
variable "aws_access_key" {
sensitive = true
}
variable "aws_secret_key" {
sensitive = true
}
variable "contabo_client_id" {
sensitive = true
}
@ -169,3 +182,7 @@ variable "hosts" {
datacenter = optional(string)
}))
}
variable "email_domains" {
type = set(string)
}