Skip to content

Commit 4c0aee0

Browse files
committed
fix: ci and tf fmt
1 parent 237f663 commit 4c0aee0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383

8484
- name: Terraform Plan
8585
working-directory: ${{ matrix.env.tf_working_dir }}
86-
run: terraform plan.tfplan -input=false
86+
run: terraform plan -input=false -out=plan.tfplan
8787

8888
- name: Comment Terraform Plan
8989
uses: byu-oit/github-action-tf-plan-comment@v1

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ resource "aws_lambda_function" "docker_api" {
306306
}
307307

308308
resource "aws_lambda_alias" "live" {
309-
count = ! local.use_codedeploy ? 1 : 0
309+
count = !local.use_codedeploy ? 1 : 0
310310
name = "live"
311311
description = "ALB sends traffic to this version"
312312
function_name = local.use_zip ? aws_lambda_function.zip_api[0].arn : aws_lambda_function.docker_api[0].arn

0 commit comments

Comments
 (0)