Remove unused s3 from opentofu services module

This commit is contained in:
Tobias Reisinger 2025-04-15 00:53:28 +02:00
parent ad7648a748
commit 10faf1b7f8
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
2 changed files with 0 additions and 2 deletions
modules/services

View file

@ -18,6 +18,5 @@ terraform {
locals {
services_auth = {for key, val in var.services : key => val if val.auth}
services_database = {for key, val in var.services : key => val if val.database}
services_s3 = {for key, val in var.services : key => val if val.s3}
services_mail = {for key, val in var.services : key => val if val.mail != null}
}

View file

@ -16,7 +16,6 @@ variable "services" {
auth = bool
auth_cert = optional(string)
auth_redirects = optional(list(string))
s3 = bool
database = bool
mail = optional(string)
}))