- React + TypeScript frontend with automatic color coding - Confluence API integration for data sync - AWS Amplify deployment with Terraform - Support for all Bambu Lab filament colors including gradients
25 lines
757 B
HCL
25 lines
757 B
HCL
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 "github_webhook_url" {
|
|
description = "The webhook URL for GitHub"
|
|
value = aws_amplify_app.filamenteka.production_branch[0].webhook_url
|
|
sensitive = true
|
|
} |