Skip to content

Instantly share code, notes, and snippets.

@ahmad2x4
Created May 18, 2020 00:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmad2x4/3add3d90b6ed431acf93cc7c1020b46e to your computer and use it in GitHub Desktop.
Save ahmad2x4/3add3d90b6ed431acf93cc7c1020b46e to your computer and use it in GitHub Desktop.
Pulumi sample infra source code part 9
// SQL CONNECTION STRING
export const connectionString = pulumi
.all([rds.address, rds.port])
.apply(
([serverName, port]) =>
`Server=${serverName},${port};uid=admin;pwd=${dbPassword};`
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment