mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
19 lines
No EOL
437 B
HCL
19 lines
No EOL
437 B
HCL
output "role_name" {
|
|
value = module.role.role_name
|
|
}
|
|
|
|
output "api_endpoint" {
|
|
value = aws_apigatewayv2_stage.this.invoke_url
|
|
}
|
|
|
|
output "cloudfront_domain" {
|
|
value = aws_cloudfront_distribution.api.domain_name
|
|
}
|
|
|
|
output "certificate_validation_records" {
|
|
value = aws_acm_certificate.this.domain_validation_options
|
|
}
|
|
|
|
# output "custom_domain_endpoint" {
|
|
# value = var.domain_name != null ? "https://${var.domain_name}" : null
|
|
# } |