Skip to content

Commit

Permalink
fix: Type errors in pulumi [skip pizza]
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr committed Jan 9, 2025
1 parent 4efe2d2 commit 9ca42b2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions infrastructure/application/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,6 @@ export = async () => {
// https://www.metabase.com/docs/latest/troubleshooting-guide/running.html#heap-space-outofmemoryerrors
{ name: "JAVA_OPTS", value: `-Xmx2g` },
{ name: "MB_DB_TYPE", value: "postgres" },
{
name: "MB_DB_CONNECTION_URI",
value: pulumi.interpolate`postgres://${role.name}:${metabasePgPassword}@${pgRoot.hostname}:${pgRoot.port}/${metabasePgDatabase.name}`,
},
{ name: "MB_JETTY_HOST", value: "0.0.0.0" },
{ name: "MB_JETTY_PORT", value: String(METABASE_PORT) },
{
Expand Down Expand Up @@ -549,7 +545,7 @@ export = async () => {
},
{
name: "PG_URL",
value: dbRootUrl,
value: config.requireSecret("db-url"),
},
],
},
Expand Down

0 comments on commit 9ca42b2

Please sign in to comment.