Skip to content

Commit

Permalink
fix: Pulumi output syntax [skip pizza]
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr committed Jan 9, 2025
1 parent a71b156 commit ed31878
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion infrastructure/application/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export = async () => {
vpc,
});

const dbRootUrl: string = config.requireSecret("db-url");
const dbRootUrl = config.requireSecret("db-url").get();

// ----------------------- Metabase
const pgRoot = url.parse(dbRootUrl);
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/application/services/hasura.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const createHasuraService = async ({
}: CreateService) => {

const config = new pulumi.Config();
const dbRootUrl: string = config.requireSecret("db-url");
const dbRootUrl = config.requireSecret("db-url").get();
const DOMAIN: string = await certificates.requireOutputValue("domain");

const lbHasura = new awsx.lb.ApplicationLoadBalancer("hasura", {
Expand Down

0 comments on commit ed31878

Please sign in to comment.