Skip to content

Commit

Permalink
Re-order outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jonfairbanks committed Oct 13, 2024
1 parent bf32803 commit 0f54158
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .tf/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -377,11 +377,6 @@ resource "aws_route53_record" "yo_api_cname" {
/* Output Variables */
/* ------------------------- */

output "api_gateway_url" {
description = "The URL of the API Gateway"
value = "${aws_api_gateway_deployment.yo_api_deployment.invoke_url}"
}

output "lambda_function_arn" {
description = "The ARN of the Lambda function"
value = "${aws_lambda_function.yo_api_lambda.arn}"
Expand All @@ -392,6 +387,11 @@ output "cloudwatch_log_group" {
value = aws_cloudwatch_log_group.yo_api_loggroup.name
}

output "api_gateway_url" {
description = "The URL of the API Gateway"
value = "${aws_api_gateway_deployment.yo_api_deployment.invoke_url}"
}

output "route53_record" {
description = "The Route 53 DNS record"
value = "https://${aws_route53_record.yo_api_cname.fqdn}"
Expand Down

0 comments on commit 0f54158

Please sign in to comment.