Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfowl committed Mar 30, 2024
1 parent 2b88846 commit 5419268
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions playground/mongo/Mongo.AppHost/api-containerapp.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ resource containerApp 'Microsoft.App/containerApps@2023-05-02-preview' = {
configuration: {
activeRevisionsMode: 'Single'
ingress: {
external: false
targetPort: 8080
transport: 'http'
external: true
targetPort: 8080
transport: 'http'
}
registries: [
{
Expand Down
6 changes: 3 additions & 3 deletions playground/mongo/Mongo.AppHost/mongo-containerapp.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ resource containerApp 'Microsoft.App/containerApps@2023-05-02-preview' = {
configuration: {
activeRevisionsMode: 'Single'
ingress: {
external: false
targetPort: 27017
transport: 'tcp'
external: false
targetPort: 27017
transport: 'tcp'
}
}
template: {
Expand Down

0 comments on commit 5419268

Please sign in to comment.