Some checks failed
Deploy / deploy (push) Failing after 6m11s
- Add Gitea Actions workflow for automated frontend and API deployment - Update all raw download URLs from GitHub to Gitea - Remove deprecated Amplify config and GitHub-specific Terraform variables - Clean up commented-out Amplify resources from Terraform - Update documentation to reflect new repository and CI/CD setup
37 lines
767 B
HCL
37 lines
767 B
HCL
variable "domain_name" {
|
|
description = "Custom domain name (optional)"
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "environment" {
|
|
description = "Environment name"
|
|
type = string
|
|
default = "production"
|
|
}
|
|
|
|
variable "app_name" {
|
|
description = "Application name"
|
|
type = string
|
|
default = "filamenteka"
|
|
}
|
|
|
|
variable "admin_password" {
|
|
description = "Admin password for the application"
|
|
type = string
|
|
default = "admin123"
|
|
sensitive = true
|
|
}
|
|
|
|
variable "cloudflare_api_token" {
|
|
description = "Cloudflare API token for DNS management"
|
|
type = string
|
|
default = ""
|
|
sensitive = true
|
|
}
|
|
|
|
variable "aws_region" {
|
|
description = "AWS region"
|
|
type = string
|
|
default = "eu-central-1"
|
|
} |