Skip to content

Commit be47824

Browse files
committed
Fix copy/paste errors
1 parent 80544bf commit be47824

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/ci-iac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
tofu_version: ${{ env.tf_version }}
8282

8383
- name: Tofu Format
84-
working-directory: iac/app
84+
working-directory: iac
8585
run: tofu fmt -check -recursive
8686

8787
plan:

iac/app/cpy.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
env = "cpy"
22
aws_account_id = "539738229445"
33

4-
deploy_test_postman_collection = "../../.postman/hw-fargate-api.postman_collection.json"
4+
deploy_test_postman_collection = "../../.postman/hw-lambda-api.postman_collection.json"
55
deploy_test_postman_environment = "../../.postman/cpy-tst.postman_environment.json"

iac/app/dev.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
env = "dev"
22
aws_account_id = "977306314792"
33

4-
deploy_test_postman_collection = "../../.postman/hw-fargate-api.postman_collection.json"
4+
deploy_test_postman_collection = "../../.postman/hw-lambda-api.postman_collection.json"
55
deploy_test_postman_environment = "../../.postman/dev-tst.postman_environment.json"

iac/app/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ module "lambda_api" {
7575
source = "github.com/byu-oit/terraform-aws-lambda-api?ref=v4.0.0"
7676
app_name = "${local.name}-${var.env}"
7777
codedeploy_service_role_arn = module.acs.power_builder_role.arn
78-
zip_filename = "../../../src/lambda.zip"
78+
zip_filename = "../../src/lambda.zip"
7979
zip_handler = "index.handler"
8080
zip_runtime = "nodejs22.x"
8181
hosted_zone = module.acs.route53_zone

iac/app/prd.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
env = "prd"
22
aws_account_id = "539738229445"
33

4-
deploy_test_postman_collection = "../../.postman/hw-fargate-api.postman_collection.json"
4+
deploy_test_postman_collection = "../../.postman/hw-lambda-api.postman_collection.json"
55
deploy_test_postman_environment = "../../.postman/prd-tst.postman_environment.json"

iac/app/stg.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
env = "stg"
22
aws_account_id = "977306314792"
33

4-
deploy_test_postman_collection = "../../.postman/hw-fargate-api.postman_collection.json"
4+
deploy_test_postman_collection = "../../.postman/hw-lambda-api.postman_collection.json"
55
deploy_test_postman_environment = "../../.postman/stg-tst.postman_environment.json"

0 commit comments

Comments
 (0)