Skip to content

Commit

Permalink
fix(infra): fix getting redisConnectionUrl from core infra (passportx…
Browse files Browse the repository at this point in the history
  • Loading branch information
nutrina authored Nov 29, 2023
1 parent b73c15a commit 25cc65c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion infra/aws/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ const coreInfraStack = new pulumi.StackReference(`gitcoin/core-infra/${stack}`);

const vpcId = coreInfraStack.getOutput("vpcId");
const vpcPrivateSubnets = coreInfraStack.getOutput("privateSubnetIds");
const redisConnectionUrl = coreInfraStack.getOutput("staticRedisConnectionUrl");
const redisConnectionUrl = pulumi.interpolate`${coreInfraStack.getOutput("staticRedisConnectionUrl")}`;


// ALB Data
const albDnsName = coreInfraStack.getOutput("coreAlbDns");
const albZoneId = coreInfraStack.getOutput("coreAlbZoneId");
Expand Down

0 comments on commit 25cc65c

Please sign in to comment.