Skip to content
This repository has been archived by the owner on Mar 9, 2023. It is now read-only.

Commit

Permalink
Moved lambda artifact to root level
Browse files Browse the repository at this point in the history
  • Loading branch information
nsmithuk committed Apr 1, 2019
1 parent c052ddf commit 2bcefc9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -71,7 +71,7 @@ orbs:
- run:
name: relocate_lambda_packages
command: |
mv /tmp/*.zip ~/project/lambdas/
mv /tmp/*.zip ~/project/
jobs:
lint_terraform:
executor: terraform
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Expand Up @@ -5,8 +5,8 @@
# Virtual Environments
api-gateway/

# lambda zips
*.zip
# lambda zip
lambda_artifact.zip

# Ruby
*.lock
Expand Down
2 changes: 1 addition & 1 deletion lpas_collection.tf
Expand Up @@ -31,7 +31,7 @@ module "lpas_collection_lambda" {
source = "modules/lambda"

lambda_name = "lpas_collection"
lambda_function_filename = "./lambdas/lambda_artifact.zip"
lambda_function_filename = "./lambda_artifact.zip"
lambda_handler = "id_handler"

security_group_ids = [
Expand Down
2 changes: 1 addition & 1 deletion sirius_access_demo.tf
Expand Up @@ -7,7 +7,7 @@ module "sirius_access_test_lambda" {
source = "modules/lambda"

lambda_name = "sirius_access_demo"
lambda_function_filename = "./lambdas/lambda_artifact.zip"
lambda_function_filename = "./lambda_artifact.zip"
lambda_handler = "test_handler"

security_group_ids = [
Expand Down

0 comments on commit 2bcefc9

Please sign in to comment.