Skip to content

Commit 4fcd8b6

Browse files
author
Tiago
authored
Update AWS TS miniflux example
Update connection string to use the configured `dbName`
1 parent 605a54d commit 4fcd8b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws-ts-pulumi-miniflux/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const db = new aws.rds.Instance("db", {
3535
});
3636

3737
// Assemble a connection string for the Miniflux service.
38-
const connectionString = pulumi.interpolate `postgres://${dbUsername}:${dbPassword}@${db.endpoint}/miniflux?sslmode=disable`;
38+
const connectionString = pulumi.interpolate `postgres://${dbUsername}:${dbPassword}@${db.endpoint}/${dbName}?sslmode=disable`;
3939

4040
// Create an NetworkListener to forward HTTP traffic on port 8080.
4141
const listener = new awsx.lb.NetworkListener("lb", { port: 8080 });

0 commit comments

Comments
 (0)