Skip to content

Instantly share code, notes, and snippets.

@saltukalakus
Created March 27, 2020 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saltukalakus/511f104f51041a305d2452e45b7a82db to your computer and use it in GitHub Desktop.
Save saltukalakus/511f104f51041a305d2452e45b7a82db to your computer and use it in GitHub Desktop.
Deploy CLI multiple callback URL update
{
"AUTH0_DOMAIN": "saltukalakus.auth0.com",
"AUTH0_CLIENT_ID": "DOsng05QhKSktD9R86JHdNfJBwjfagd3",
"AUTH0_CLIENT_SECRET": "CILv..redacted",
"AUTH0_KEYWORD_REPLACE_MAPPINGS": {
"AUTH0_TENANT_NAME": "saltukalakus.auth0.com",
"ENV": "DEV",
"example-app-redirect-uri": ["https://localhost:8443/login/oauth2/code/auth0-trial","http://localhost:8080/login/oauth2/code/auth0-trial","http://localhost:8083/login/oauth2/code/auth0-trial"]
},
"AUTH0_ALLOW_DELETE": false
}
{
"allowed_clients": [],
"allowed_logout_urls": [
"https://##ENV##.myapp.com/logout"
],
"allowed_origins": [
"https://##ENV##.myapp.com/"
],
"app_type": "spa",
"callbacks": @@example-app-redirect-uri@@,
"cross_origin_auth": false,
"custom_login_page_on": true,
"description": "My SPA Application",
"grant_types": [
"authorization_code",
"implicit",
"refresh_token"
],
"is_first_party": true,
"is_token_endpoint_ip_header_trusted": false,
"jwt_configuration": {
"alg": "RS256",
"lifetime_in_seconds": 36000,
"secret_encoded": false
},
"logo_uri": "https://myapp.com/logo.png",
"name": "My SPA",
"oidc_conformant": true,
"sso": true,
"sso_disabled": false,
"token_endpoint_auth_method": "none",
"web_origins": [
"https://##ENV##.myapp.com"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment