Skip to content

Commit

Permalink
go
Browse files Browse the repository at this point in the history
  • Loading branch information
ondfisk committed Sep 4, 2024
1 parent bcd7efb commit 5dad606
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ This project demonstrates a number of capabilities in GitHub and Microsoft Azure

```bash
RESOURCE_GROUP=MyWebApp2
SQL_SERVER=sql-968b52419901
WEBAPP=web-968b52419901
SQL_SERVER=sql-096aaa61cb1c
WEBAPP=web-096aaa61cb1c
DATABASE=Movies

az webapp connection create sql --resource-group $RESOURCE_GROUP --name $WEBAPP --target-resource-group $RESOURCE_GROUP --server $SQL_SERVER --database $DATABASE --system-identity --client-type dotnet --connection $DATABASE # --config-connstr (in preview; to be enabled later)
Expand Down
6 changes: 3 additions & 3 deletions infrastructure/main.bicepparam
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ using './main.bicep'

param location = 'swedencentral'
param logAnalyticsWorkspaceName = 'MyLogAnalyticsWorkspace'
param applicationInsightsName = 'web-968b52419901'
param applicationInsightsName = 'web-096aaa61cb1c'
param appServicePlanName = 'MyAppServicePlan'
param webAppName = 'web-968b52419901'
param sqlServerName = 'sql-968b52419901'
param webAppName = 'web-096aaa61cb1c'
param sqlServerName = 'sql-096aaa61cb1c'
param databaseName = 'Movies'
param databaseSku = 'Basic'
param sqlAdminGroupName = 'Movie Database Admins'
Expand Down

0 comments on commit 5dad606

Please sign in to comment.