Add minio to terraform
This commit is contained in:
parent
4264017641
commit
37a304d161
9 changed files with 130 additions and 0 deletions
|
@ -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 => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue