Remove decorative icons and update CORS configuration
This commit is contained in:
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user