Remove decorative icons and update CORS configuration

This commit is contained in:
DaX
2025-06-20 13:05:36 +02:00
parent 18110ab159
commit 62a4891112
51 changed files with 4284 additions and 2385 deletions

View File

@@ -27,21 +27,10 @@ variable "app_name" {
default = "filamenteka"
}
variable "jwt_secret" {
description = "JWT secret for authentication"
type = string
sensitive = true
}
variable "admin_username" {
description = "Admin username"
type = string
default = "admin"
}
variable "admin_password_hash" {
description = "BCrypt hash of admin password"
variable "admin_password" {
description = "Admin password for the application"
type = string
default = "admin123"
sensitive = true
}
@@ -50,4 +39,10 @@ variable "cloudflare_api_token" {
type = string
default = ""
sensitive = true
}
variable "aws_region" {
description = "AWS region"
type = string
default = "eu-central-1"
}