Skip to content

Commit

Permalink
Update example CLI commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Graham Krizek committed Dec 10, 2018
1 parent 02e1324 commit e344ad0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ $ aws lambda create-function \
--role bashFunctionRole \
--handler index.handler \
--runtime provided \
--layers $ARN
--layers arn:aws:lambda:<region>:744348701589:layer:bash:2 \
--zip-file fileb://function.zip
```

2. Upload your code and start using Bash in AWS Lambda!
2. Start using Bash in AWS Lambda!

### Updating Versions

Expand All @@ -60,7 +61,7 @@ $ aws lambda create-function \
```
$ aws lambda update-function-configuration \
--function-name bashFunction \
--layers $ARN
--layers arn:aws:lambda:<region>:744348701589:layer:bash:2
```

### Writing Scripts
Expand Down

0 comments on commit e344ad0

Please sign in to comment.