Skip to content

Commit c99951a

Browse files
authored
Merge pull request #291872 from MicrosoftDocs/main
12/12 11:00 AM IST Publish
2 parents 600e278 + 6d4e63b commit c99951a

File tree

184 files changed

+604
-741
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+604
-741
lines changed

.openpublishing.redirection.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4044,11 +4044,16 @@
40444044
"source_path_from_root": "/articles/load-balancer/move-across-regions-internal-load-balancer-portal.md",
40454045
"redirect_url": "/azure/load-balancer/move-across-regions-azure-load-balancer",
40464046
"redirect_document_id": false
4047-
},
4047+
},
40484048
{
40494049
"source_path_from_root": "/articles/load-balancer/move-across-regions-internal-load-balancer-powershell.md",
40504050
"redirect_url": "/azure/load-balancer/move-across-regions-azure-load-balancer",
40514051
"redirect_document_id": false
4052+
},
4053+
{
4054+
"source_path_from_root": "/articles/fasttrack/index.yml",
4055+
"redirect_url": "/azure",
4056+
"redirect_document_id": false
40524057
}
40534058
]
40544059
}

articles/azure-cache-for-redis/cache-tutorial-functions-getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ dotnet add package Microsoft.Azure.Functions.Worker.Extensions.Redis --prereleas
298298

299299
1. Confirm that the triggers are being activated in the terminal.
300300

301-
:::image type="content" source="media/cache-tutorial-functions-getting-started/cache-triggers-working-lightbox.png" alt-text="Screenshot of the VS Code editor with code running." lightbox="media/cache-tutorial-functions-getting-started/cache-triggers-working.png":::
301+
:::image type="content" source="media/cache-tutorial-functions-getting-started/cache-triggers-working-lightbox.png" alt-text="Screenshot of the VS Code editor with code running." :::
302302

303303
## Add Redis bindings
304304

articles/azure-cache-for-redis/cache-web-app-howto.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,6 @@ After the new app has been published, add a new app setting. This setting is use
215215

216216
2. Add a new app setting named **CacheConnection** for the app to use to connect to the cache. Use the same value you configured for `RedisHostName` in your *web.config* file.
217217

218-
:::image type="content" source="media/cache-web-app-howto/cache-add-app-setting.png" alt-text="Screenshot showing how to add app setting.":::
219-
220218
### Run the app in Azure
221219

222220
1. In your browser, go to the URL for the app. The URL appears in the results of the publishing operation in the Visual Studio output window. It's also provided in the Azure portal on the overview page of the app you created.
28 KB
Loading
240 KB
Loading
62.5 KB
Loading

articles/azure-maps/migrate-help-using-copilot.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ GitHub Copilot generates a code snippet that matches your instructions, using [A
112112
<meta charset="UTF-8">
113113
<meta name="viewport" content="width=device-width, initial-scale=1.0">
114114
<title>Azure Maps Geocode and Pushpin Example</title>
115-
<script type="text/javascript" src="https://atlas.microsoft.com/sdk/js/atlas.min.js?api-version=3"></script>
115+
<link href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" rel="stylesheet" />
116+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
116117
<style>
117118
#map {
118119
width: 100%;
@@ -124,7 +125,7 @@ GitHub Copilot generates a code snippet that matches your instructions, using [A
124125
<div id="map"></div>
125126
<script>
126127
var subscriptionKey = 'YOUR_SUBSCRIPTION_KEY'; // Replace with your Azure Maps subscription key
127-
var query = '1 Microsoft Way, Seattle';
128+
var query = '1 Microsoft Way, Redmond';
128129
129130
// Make Geocode API request
130131
fetch(`https://atlas.microsoft.com/geocode?api-version=2023-06-01&subscription-key=${subscriptionKey}&query=${query}`)

articles/azure-signalr/scripts/signalr-cli-create-with-app-service-github-oauth.md

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -28,33 +28,20 @@ This sample script creates a new Azure SignalR Service resource, which is used t
2828

2929
### Enable GitHub authentication and Git deployment for web app
3030

31-
1. Update the values in the following script for the desired deployment username and its password
32-
33-
```azurecli
34-
deploymentUser=<Replace with your desired username>
35-
deploymentUserPassword=<Replace with your desired password>
36-
```
37-
38-
2. Update the values in the following script based on your GitHub OAuth App registration.
31+
1. Update the values in the following script based on your GitHub OAuth App registration.
3932

4033
```azurecli
4134
GitHubClientId=<Replace with your GitHub OAuth app Client ID>
4235
GitHubClientSecret=<Replace with your GitHub OAuth app Client Secret>
4336
```
4437

45-
3. Add app settings to use with GitHub authentication
38+
1. Add app settings to use with GitHub authentication
4639

4740
```Azure CLI
4841
az webapp config appsettings set --name $webApp --resource-group $resourceGroup --settings "GitHubClientSecret=$GitHubClientSecret"
4942
```
5043

51-
4. Update the webapp with the desired deployment user name and password
52-
53-
```Azure CLI
54-
az webapp deployment user set --user-name $deploymentUser --password $deploymentUserPassword
55-
```
56-
57-
5. Configure Git deployment and return the deployment URL.
44+
1. Configure Git deployment and return the deployment URL.
5845

5946
```Azure CLI
6047
az webapp deployment source config-local-git --name $webAppName --resource-group $resourceGroupName --query [url] -o tsv

0 commit comments

Comments
 (0)