Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deploy integration test backends using amplify CLI in headless mode. #71

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8bb3382
chore(android-build) Updates for eventual automation of amplify-andro…
rjuliano Nov 3, 2020
8c0a00c
Remove reference to at_auth* stack
rjuliano Nov 3, 2020
237faa8
Rename datastore tests
rjuliano Dec 14, 2020
6765c16
Make api key default auth mode
rjuliano Dec 14, 2020
18a0651
Fix dictionary
rjuliano Dec 14, 2020
513fdbd
Renamed projects and stacks
rjuliano Dec 14, 2020
af1e33e
Add forcePush
rjuliano Dec 14, 2020
6daf87b
Remove --codegen from push command
rjuliano Dec 14, 2020
abc782a
Add codegen option
rjuliano Dec 23, 2020
b9ccfe3
Add conflict detection option and push between auth and api
rjuliano Dec 28, 2020
0837ec4
Change variable name
rjuliano Dec 29, 2020
5a17034
Adding schemas for API tests
rjuliano Dec 30, 2020
ebaaafb
Renamed schema files
rjuliano Dec 30, 2020
c81bb18
Tweak to the events API schema
rjuliano Dec 31, 2020
6916b19
Merge branch 'main' into rjuliano/amplify-integ-test-backend
rjuliano Jan 5, 2021
c4ebbd2
Set expiration time for test keys
rjuliano Jan 6, 2021
a457a28
Updating READMEs
rjuliano Jan 6, 2021
0cdd502
Cleaned up warnings
rjuliano Jan 6, 2021
7aad6ba
Cleanup unused code and setup artifact buckets
rjuliano Jan 29, 2021
536ca37
Merge branch 'main' into rjuliano/amplify-integ-test-backend
rjuliano Apr 30, 2021
2e6597b
Adding schemas and changes for multiauth
rjuliano May 12, 2021
22e3c01
Adding createdAt field to datastore schema
rjuliano May 20, 2021
5421bc4
pin old version of cli for now
rjuliano May 20, 2021
699b872
chore: add oidc config to api
rjuliano Jun 18, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Set expiration time for test keys
  • Loading branch information
rjuliano committed Jan 6, 2021
commit c4ebbd2d9c4ce18d692574616a5682a8904d4588
Original file line number Diff line number Diff line change
@@ -23,7 +23,10 @@ def create_user_pools_config(cls, auth_resource_name:str):

@classmethod
def create_api_key_config(cls):
return { 'mode': 'API_KEY' }
return {
'mode': 'API_KEY',
'expirationTime': 365
}

@classmethod
def create_oidc_config(cls, client_id: str, issuer_url: str, provider_name: str, is_default: bool = False):