Skip to content

Commit

Permalink
Change ports to strings to fit the type (pulumi#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailshilkov authored and stack72 committed Oct 10, 2019
1 parent 7a3fd28 commit 1c26d36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion azure-ts-appservice-docker/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const getStartedApp = new azure.appservice.AppService("get-started", {
DOCKER_REGISTRY_SERVER_URL: pulumi.interpolate`https://${registry.loginServer}`,
DOCKER_REGISTRY_SERVER_USERNAME: registry.adminUsername,
DOCKER_REGISTRY_SERVER_PASSWORD: registry.adminPassword,
WEBSITES_PORT: 80, // Our custom image exposes port 80. Adjust for your app as needed.
WEBSITES_PORT: "80", // Our custom image exposes port 80. Adjust for your app as needed.
},
siteConfig: {
alwaysOn: true,
Expand Down
2 changes: 1 addition & 1 deletion azure-ts-appservice-springboot/infrastructure/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const appService = new azure.appservice.AppService(customImage, {
DOCKER_REGISTRY_SERVER_USERNAME: registry.adminUsername,
DOCKER_REGISTRY_SERVER_PASSWORD: registry.adminPassword,
// Our custom image exposes port 9000.
WEBSITES_PORT: 9000,
WEBSITES_PORT: "9000",
},
siteConfig: {
alwaysOn: true,
Expand Down

0 comments on commit 1c26d36

Please sign in to comment.