Skip to content

Commit

Permalink
Fix Pipfile and add aws_profile as a param (#1)
Browse files Browse the repository at this point in the history
* Update serverless.yml

* Require python v3.9

Co-authored-by: dudeitssm <36095297+dudeitssm@users.noreply.github.com>
  • Loading branch information
ohe and dudeitssm authored Feb 23, 2022
1 parent c9c0a99 commit 211f859
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ requests = "*"
pylint = "*"

[requires]
python_version = "3.7"
python_version = "3.9"
2 changes: 1 addition & 1 deletion serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins:
provider:
name: aws
# Sane defaults, easy for multi-account/multi-region organizations
profile: ${env:AWS_PROFILE, 'default'}
profile: ${param:aws_profile, env:AWS_PROFILE, 'default'}
region: ${env:AWS_REGION, env:AWS_DEFAULT_REGION, 'us-east-1'}
runtime: python3.9

Expand Down

0 comments on commit 211f859

Please sign in to comment.