Skip to content

Commit

Permalink
feat(infra): add support for GOOGLE_CALLBACK env variable for IAM
Browse files Browse the repository at this point in the history
  • Loading branch information
nutrina committed Nov 18, 2022
1 parent d597f16 commit f09d3c3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions infra/production/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,10 @@ const service = new awsx.ecs.FargateService("dpopp-iam", {
name: "GOOGLE_CLIENT_SECRET",
valueFrom: `${IAM_SERVER_SSM_ARN}:GOOGLE_CLIENT_SECRET::`,
},
{
name: "GOOGLE_CALLBACK",
valueFrom: `${IAM_SERVER_SSM_ARN}:GOOGLE_CALLBACK::`,
},
{
name: "RPC_URL",
valueFrom: `${IAM_SERVER_SSM_ARN}:MAINNET_RPC_URL::`,
Expand Down
4 changes: 4 additions & 0 deletions infra/review/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ const service = new awsx.ecs.FargateService("dpopp-iam", {
name: "GOOGLE_CLIENT_SECRET",
valueFrom: `${IAM_SERVER_SSM_ARN}:GOOGLE_CLIENT_SECRET::`,
},
{
name: "GOOGLE_CALLBACK",
valueFrom: `${IAM_SERVER_SSM_ARN}:GOOGLE_CALLBACK::`,
},
{
name: "RPC_URL",
valueFrom: `${IAM_SERVER_SSM_ARN}:MAINNET_RPC_URL::`,
Expand Down
4 changes: 4 additions & 0 deletions infra/staging/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,10 @@ const service = new awsx.ecs.FargateService("dpopp-iam", {
name: "GOOGLE_CLIENT_SECRET",
valueFrom: `${IAM_SERVER_SSM_ARN}:GOOGLE_CLIENT_SECRET::`,
},
{
name: "GOOGLE_CALLBACK",
valueFrom: `${IAM_SERVER_SSM_ARN}:GOOGLE_CALLBACK::`,
},
{
name: "RPC_URL",
valueFrom: `${IAM_SERVER_SSM_ARN}:MAINNET_RPC_URL::`,
Expand Down

0 comments on commit f09d3c3

Please sign in to comment.