-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from mikmorley/fix-node-fetch-version
Version 1.1.0
- Loading branch information
Showing
20 changed files
with
510 additions
and
6,149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: terraform-lint | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@main | ||
|
||
- name: Lint Terraform | ||
uses: actionshub/terraform-lint@main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# aws-terraform-scheduled-ec2-ami-backup-lambda | ||
|
||
## Manual (Re)Build of Lambda Package | ||
|
||
Run the following script locally to rebuild the Lambda package manually. | ||
|
||
``` | ||
#!/bin/bash | ||
echo "Removing any cached node_modules" | ||
rm -rf ./lambda/node_modules | ||
echo "Installing NPM dependencies" | ||
cd ./lambda && npm install && cd .. | ||
echo "Removing original archive" | ||
rm ./zip/lambda_function.zip | ||
echo "Creating updated archive" | ||
cd ./lambda && zip -r ../zip/lambda_function.zip . | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
59 changes: 0 additions & 59 deletions
59
lambda/node_modules/aws-lambda-nodejs-helpers/package.json
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.