Skip to content

Commit

Permalink
branch
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispsheehan committed Mar 8, 2024
1 parent 619648f commit c8114e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy Push to Dev

on:
push:
branches: main
branches: api-v2

permissions:
id-token: write
Expand Down
4 changes: 2 additions & 2 deletions tf/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ resource "aws_lambda_permission" "this" {
}

resource "aws_apigatewayv2_api" "this" {
name = "${local.lambda_name}-APIGateway"
name = "${local.lambda_name}-APIGateway"
protocol_type = "HTTP"
target = aws_lambda_function.lambda.invoke_arn
target = aws_lambda_function.lambda.invoke_arn
}

resource "aws_apigatewayv2_integration" "this" {
Expand Down
2 changes: 1 addition & 1 deletion tf/output.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
output "api_gateway_url" {
value = "${aws_apigatewayv2_stage.this.invoke_url}"
value = aws_apigatewayv2_stage.this.invoke_url
}

output "function_name" {
Expand Down

0 comments on commit c8114e6

Please sign in to comment.