Model/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf
2026-03-12 17:29:47 +00:00

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
# }