44 lines
1.3 KiB
HCL
44 lines
1.3 KiB
HCL
output "application_url" {
|
|
description = "Public URL for the Documenso deployment."
|
|
value = "https://${var.domain_name}"
|
|
}
|
|
|
|
output "load_balancer_dns_name" {
|
|
description = "DNS name assigned to the application load balancer."
|
|
value = aws_lb.this.dns_name
|
|
}
|
|
|
|
output "database_endpoint" {
|
|
description = "RDS PostgreSQL endpoint for the application."
|
|
value = aws_db_instance.postgres.address
|
|
}
|
|
|
|
output "postgres_engine_version" {
|
|
description = "Resolved PostgreSQL engine version deployed to RDS."
|
|
value = aws_db_instance.postgres.engine_version
|
|
}
|
|
|
|
output "ecs_cluster_name" {
|
|
description = "ECS cluster name running the Documenso service."
|
|
value = aws_ecs_cluster.this.name
|
|
}
|
|
|
|
output "secrets_manager_secret_name" {
|
|
description = "Secrets Manager secret that stores generated and supplied application secrets."
|
|
value = aws_secretsmanager_secret.app.name
|
|
}
|
|
|
|
output "ses_identity_domain" {
|
|
description = "SES domain verified for outbound mail."
|
|
value = aws_ses_domain_identity.this.domain
|
|
}
|
|
|
|
output "upload_bucket_name" {
|
|
description = "S3 bucket used for Documenso uploads."
|
|
value = aws_s3_bucket.uploads.bucket
|
|
}
|
|
|
|
output "waf_web_acl_arn" {
|
|
description = "ARN of the WAF web ACL attached to the ALB."
|
|
value = aws_wafv2_web_acl.this.arn
|
|
} |