Add minio to terraform

This commit is contained in:
Tobias Reisinger 2025-06-08 19:33:26 +02:00
parent 4264017641
commit 37a304d161
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
9 changed files with 130 additions and 0 deletions

View file

@ -9,6 +9,19 @@ output "authentik_data" {
sensitive = true
}
output "minio_data" {
value = {
for key, val in local.buckets_s3 : key => {
access_key = minio_accesskey.service_access_keys[val].access_key
secret_key = minio_accesskey.service_access_keys[val].secret_key
name = minio_s3_bucket.service_buckets[key].bucket
region = "eu-de-1" // TODO make dynamic
api_endpoint = "https://s3.serguzim.me" // TODO make dynamic
}
}
sensitive = true
}
output "postgresql_data" {
value = {
for key in keys(postgresql_database.service_databases) : key => {