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

G3-347: Switching Auth tenant to thejacksonlaboratory #16

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion deploy/k8s/base/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: ConfigMap
metadata:
name: geneweaver-legacy-config
data:
AUTH_CLIENTID: "wMjx3nGV24qneBjXqz52IhEpq6AU7reo"
AUTH_CLIENTID: "x9IiBRyt8lS3lsqrz2H6aO1leRBbxyb7"
APPLICATION_RESULTS: "/var/geneweaver/results"
CELERY_HOST: "redis-master"
CELERY_PORT: "6379"
Expand Down
6 changes: 6 additions & 0 deletions deploy/k8s/overlays/jax-cluster-prod-10--prod/configmap.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: geneweaver-legacy-config
data:
AUTH_CLIENTID: "5X9TlYZWVN3Ox9cVNpn2BEW3zhpFA1i1"
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ resources:
- ingress.yaml
patchesStrategicMerge:
- persistent-volume-claim.yaml
- configmap.yaml
6 changes: 6 additions & 0 deletions deploy/k8s/overlays/jax-cluster-prod-10--stage/configmap.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: geneweaver-legacy-config
data:
AUTH_CLIENTID: "5X9TlYZWVN3Ox9cVNpn2BEW3zhpFA1i1"
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ resources:
- ingress.yaml
patchesStrategicMerge:
- persistent-volume-claim.yaml
- configmap.yaml
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "geneweaver-legacy"
version = "1.3.5"
version = "1.4.0"
description = ""
authors = ["Alexander Berger <alexander.berger@jax.org>"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions src/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ class LandingPage(BaseModel):


class Auth(BaseModel):
client_id: str = Field("wMjx3nGV24qneBjXqz52IhEpq6AU7reo", validation_alias="clientid")
client_id: str = Field("x9IiBRyt8lS3lsqrz2H6aO1leRBbxyb7", validation_alias="clientid")
client_secret: str = Field("", validation_alias="clientsecret")
domain: str = "geneweaver.auth0.com"
domain: str = "thejacksonlaboratory.auth0.com"
auth_endpoint: str = Field("authorize", validation_alias="authendpoint")
token_endpoint: str = Field("oauth/token", validation_alias="tokenendpoint")
userinfo_endpoint: str = Field("oauth/userinfo", validation_alias="userinfoendpoint")
Expand Down
Loading