Skip to content

Commit e9f8b68

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 624325e + 76deb75 commit e9f8b68

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.github/workflows/validate.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ jobs:
1616
steps:
1717
- name: Checkout repository
1818
uses: actions/checkout@v2
19+
with:
20+
# Workaround unexplained "no merge base" error
21+
# https://github.com/serverless/enterprise-plugin/pull/466/checks?check_run_id=954633250
22+
fetch-depth: 2
1923

2024
- name: Retrieve last master commit (for `git diff` purposes)
2125
run: |

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,13 @@ inputs:
113113
- arn:aws:first:layer
114114
- arn:aws:second:layer
115115
domain: api.serverless.com # (optional) if the domain was registered via AWS Route53 on the account you are deploying to, it will automatically be set-up with your Express app's API Gateway, as well as a free AWS ACM SSL Cert.
116+
vpc: # (optional) vpc configuration to apply on the express lambda function
117+
securityGroupIds:
118+
- abc
119+
- xyz
120+
subnetIds:
121+
- abc
122+
- xyz
116123
region: us-east-2 # (optional) aws region to deploy to. default is us-east-1.
117124
```
118125

0 commit comments

Comments
 (0)