output "app_id" { description = "The ID of the Amplify app" value = aws_amplify_app.filamenteka.id } output "app_url" { description = "The default URL of the Amplify app" value = "https://main.${aws_amplify_app.filamenteka.default_domain}" } output "dev_url" { description = "The development branch URL" value = "https://dev.${aws_amplify_app.filamenteka.default_domain}" } output "custom_domain_url" { description = "The custom domain URL (if configured)" value = var.domain_name != "" ? "https://${var.domain_name}" : "Not configured" } output "api_url" { description = "API Gateway URL" value = aws_api_gateway_stage.api.invoke_url } output "dynamodb_table_name" { description = "DynamoDB table name" value = aws_dynamodb_table.filaments.name } output "api_custom_url" { description = "Custom API URL via Cloudflare" value = var.domain_name != "" && var.cloudflare_api_token != "" ? "https://api.${var.domain_name}" : "Use api_url output instead" }