Skip to content

Commit 87d550b

Browse files
ms.custom tag and ms.devlang tag azure-dev-docs-pr
1 parent 598ef73 commit 87d550b

19 files changed

+51
-35
lines changed

articles/azure-cli/choose-the-right-azure-command-line-tool.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ keywords: powershell, azure, azurecli, bash, cloudshell
55
ms.topic: quickstart
66
ms.service: azure
77
ms.date: 05/04/2021
8-
ms.custom:, mode-api
8+
ms.custom: mode-api, devx-track-azurecli
9+
ms.devlang: azurecli
910
---
1011

1112

articles/go/azure-sdk-authentication-managed-identity.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ title: Authentication with the Azure SDK for Go using a managed identity
33
description: In this tutorial, you'll use the Azure SDK for Go to authenticate to Azure with a managed identity.
44
ms.date: 09/15/2021
55
ms.topic: how-to
6-
ms.custom: devx-track-go
6+
ms.custom: devx-track-go, devx-track-azurecli
7+
ms.devlang: azurecli
78
---
89

910
# Authentication with the Azure SDK for Go using a managed identity
@@ -366,4 +367,4 @@ Verify the key vault secret was created using Azure PowerShell, Azure CLI, or th
366367
## Next steps
367368
368369
> [!div class="nextstepaction"]
369-
> [Learn more about using the Azure SDK for Go](/azure/go)
370+
> [Learn more about using the Azure SDK for Go](/azure/go)

articles/go/azure-sdk-authentication.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ title: Azure authentication with the Azure SDK for Go
33
description: In this tutorial, you'll use the Azure SDK for Go to authenticate to Azure with environment variables, a managed identity, or the Azure CLI.
44
ms.date: 08/16/2021
55
ms.topic: how-to
6-
ms.custom: devx-track-go
6+
ms.custom: devx-track-go, devx-track-azurecli
7+
ms.devlang: azurecli
78
---
89

910
# Azure authentication with the Azure SDK for Go

articles/java/fundamentals/java-azure-tools.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ ms.author: karler
55
ms.assetid: b55923b7-d60a-460d-b77c-af5fac67f1cc
66
ms.topic: article
77
ms.date: 11/13/2018
8-
ms.custom: seo-java-july2019, devx-track-java
8+
ms.custom: seo-java-july2019, devx-track-java, devx-track-azurecli
9+
ms.devlang: azurecli
910
---
1011

1112
# Azure tools for Java developers

articles/java/migration/migrate-jboss-eap-to-jboss-eap-on-azure-app-service.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ description: This guide describes what you should be aware of when you want to m
44
ms.author: vaangadi
55
ms.topic: conceptual
66
ms.date: 05/27/2021
7-
ms.custom: devx-track-java
7+
ms.custom: devx-track-java, devx-track-azurecli
8+
ms.devlang: azurecli
89
recommendations: false
910
---
1011

@@ -78,7 +79,7 @@ When using JBoss EAP on App Service, be sure to take the following notes into co
7879
* **Server-to-server clustering**: Due to network security constraints, application instances on App Service cannot communicate directly with one another. If your current JBoss deployment uses clustering, consider using JBoss EAP on virtual machine scale sets or externalizing the session and state information. For more information, see [Configuring high availability](https://access.redhat.com/documentation/en-us/red_hat_jboss_enterprise_application_platform/7.1/html/configuration_guide/configuring_high_availability) and [Infinispan and cache containers](https://access.redhat.com/documentation/en-us/red_hat_jboss_enterprise_application_platform/7.2/html/configuration_guide/configuring_high_availability#infinispan) in the Red Hat documentation.
7980
* **JBoss EAP management console**: The JBoss web console isn't exposed on App Service. Instead, the Azure portal provides the management APIs for your application, and you should deploy using the Azure CLI, Azure Maven Plugin, or other Azure developer tools.
8081
* **Transactions**: The application instances are run in a stateless manner, so the Transactions API isn't currently supported. For more information, see [Managing transactions on JBoss EAP](https://access.redhat.com/documentation/en-us/red_hat_jboss_enterprise_application_platform/7.2/html-single/managing_transactions_on_jboss_eap/index) in the Red Hat documentation.
81-
* **Managed domain mode**: In a multi-server production environment, Managed Domain mode in JBoss EAP offers centralized managed capabilities. However with JBoss EAP on App Service, the App Service platform assumes the responsibility for configuration and management of your server instances. App Service eliminates the need for JBoss EAPs managed domain mode. Domain mode is a good choice for virtual machine-based multi-server deployments. For more information, see [About managed domains](https://access.redhat.com/documentation/en-us/red_hat_jboss_enterprise_application_platform/6.4/html/administration_and_configuration_guide/about_managed_domains) in the Red Hat documentation.
82+
* **Managed domain mode**: In a multi-server production environment, Managed Domain mode in JBoss EAP offers centralized managed capabilities. However with JBoss EAP on App Service, the App Service platform assumes the responsibility for configuration and management of your server instances. App Service eliminates the need for JBoss EAP???s managed domain mode. Domain mode is a good choice for virtual machine-based multi-server deployments. For more information, see [About managed domains](https://access.redhat.com/documentation/en-us/red_hat_jboss_enterprise_application_platform/6.4/html/administration_and_configuration_guide/about_managed_domains) in the Red Hat documentation.
8283

8384
## Migration
8485

articles/java/sdk/identity-dev-env-auth.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ title: Azure Authentication in Java development environments
33
description: An overview of the Azure SDK for Java concepts related to authenticating within dev environments
44
ms.date: 02/02/2021
55
ms.topic: conceptual
6-
ms.custom: devx-track-java
7-
ms.author: vigera
6+
ms.custom: devx-track-java, devx-track-azurecli
7+
ms.author: vigera
8+
ms.devlang: azurecli
89
---
910

1011
# Azure authentication in Java development environments
@@ -140,8 +141,8 @@ The IntelliJ credential authenticates in a development environment with the acco
140141
Follow the steps outlined below:
141142

142143
1. In your IntelliJ window, open **File > Settings > Plugins**.
143-
1. Search for Azure Toolkit for IntelliJ in the marketplace. Install and restart IDE.
144-
1. Find the new menu item **Tools > Azure > Azure Sign In**
144+
1. Search for ???Azure Toolkit for IntelliJ??? in the marketplace. Install and restart IDE.
145+
1. Find the new menu item **Tools > Azure > Azure Sign In???**
145146
1. **Device Login** will help you log in as a user account. Follow the instructions to log in on the `login.microsoftonline.com` website with the device code. IntelliJ will prompt you to select your subscriptions. Select the subscription with the resources that you want to access.
146147

147148
On Windows, you'll also need the KeePass database path to read IntelliJ credentials. You can find the path in IntelliJ settings under **File > Settings > Appearance & Behavior > System Settings > Passwords**. Note down the location of the KeePassDatabase path.

articles/java/sdk/identity-service-principal-auth.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ title: Azure authentication with service principal
33
description: An overview of the Azure SDK for Java concepts related to authenticating applications via service principal
44
ms.date: 02/02/2021
55
ms.topic: conceptual
6-
ms.custom: devx-track-java
7-
ms.author: vigera
6+
ms.custom: devx-track-java, devx-track-azurecli
7+
ms.author: vigera
8+
ms.devlang: azurecli
89
---
910

1011
# Azure authentication with service principal

articles/javascript/how-to/with-database/use-mysql-mariadb.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ title: Use JavaScript on Azure MariaDB or Azure MySQL
33
description: To create or move your database to Azure, you need an Azure resource.
44
ms.topic: how-to
55
ms.date: 10/05/2021
6-
ms.custom: devx-track-js
6+
ms.custom: devx-track-js, devx-track-azurecli
7+
ms.devlang: azurecli
78
---
89

910
# Develop a JavaScript application with MySQL or MariaDB on Azure
@@ -20,4 +21,4 @@ To create, move, or use a MySQL or MariaDB database, you need an **Azure** resou
2021

2122
[!INCLUDE [MariaDB](../../includes/use-mariadb.md)]
2223

23-
---
24+
---

articles/javascript/how-to/with-web-app/static-web-app-with-swa-cli/create-static-web-app.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ title: "4-SWA: Create Static Web app "
33
description: Create a Static Web app. This creation process deploys your GitHub repo to Azure.
44
ms.topic: how-to
55
ms.date: 10/18/2021
6-
ms.custom: devx-track-js
6+
ms.custom: devx-track-js, devx-track-azurecli
7+
ms.devlang: azurecli
78
#intent: Create Express.js web app with easy auth configured.
89
---
910

articles/javascript/node-azure-tools.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ title: Tool selection - JavaScript - Azure
33
description: Install individual tools for Node.js and JavaScript development on Azure
44
ms.topic: how-to
55
ms.date: 09/27/2021
6-
ms.custom: seo-javascript-september2019, seo-javascript-october2019, devx-track-js
6+
ms.custom: seo-javascript-september2019, seo-javascript-october2019, devx-track-js, devx-track-azurecli
7+
ms.devlang: azurecli
78
---
89

910
# Tools for JavaScript developers on Azure
@@ -53,7 +54,7 @@ Other resources:
5354

5455
## TypeScript
5556

56-
[TypeScript](https://www.typescriptlang.org/download) offers all of JavaScripts features, and another layer on top of these: TypeScripts type system. The main benefit of TypeScript is that it can highlight unexpected behavior in your code, lowering the chance of bugs.
57+
[TypeScript](https://www.typescriptlang.org/download) offers all of JavaScript???s features, and another layer on top of these: TypeScript???s type system. The main benefit of TypeScript is that it can highlight unexpected behavior in your code, lowering the chance of bugs.
5758

5859
## TypeScript and the Azure SDK client libraries
5960

@@ -130,4 +131,4 @@ The following list includes tips and tricks Azure developers should know to be m
130131

131132
## Next steps
132133

133-
* [Set up your development environment](core/configure-local-development-environment.md)
134+
* [Set up your development environment](core/configure-local-development-environment.md)

articles/javascript/tutorial/nodejs-virtual-machine-vm/azure-monitor-application-insights-logs.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ title: View virtual machine logs in Azure portal
33
description: Learn how to see your logging with Azure Monitor and Application Insights for your Linux virtual machine.
44
ms.topic: how-to
55
ms.date: 01/18/2022
6-
ms.custom: devx-track-js
6+
ms.custom: devx-track-js, devx-track-azurecli
7+
ms.devlang: azurecli
78
---
89

910
# 6. View virtual machine logs
@@ -58,4 +59,4 @@ To view your traces as a list, the easiest method is to use the Azure portal.
5859
## Next step
5960

6061
> [!div class="nextstepaction"]
61-
> [Clean up your Azure resources](clean-up-resources.md)
62+
> [Clean up your Azure resources](clean-up-resources.md)

articles/javascript/tutorial/static-web-app-image-analysis.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ title: Introduction and prerequisites
33
description: Locally build and deploy a React/TypeScript client application to an Azure Static Web App with a GitHub action.
44
ms.topic: how-to
55
ms.date: 12/08/2021
6-
ms.custom: devx-track-js
6+
ms.custom: devx-track-js, devx-track-azurecli
7+
ms.devlang: azurecli
78
---
89

910

@@ -354,4 +355,4 @@ Add methods to the React `app.js`. The image analysis and display of results are
354355

355356
## Next steps
356357

357-
* [Add a login button for Microsoft Identity](single-page-application-azure-login-button-sdk-msal.md)
358+
* [Add a login button for Microsoft Identity](single-page-application-azure-login-button-sdk-msal.md)

articles/python/tutorial-deploy-serverless-cloud-etl-02.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Create resources for a cloud-based, serverless ETL solution using Python
33
description: In this article, you'll use Azure CLI to create and configure common Azure resources used for a cloud-based, serverless ETL.
44
services: python, azure-functions, azure-key-vault, azure-storage-accounts
55
ms.custom: devx-track-python, devx-track-azurecli
6-
ms.devlang: python
6+
ms.devlang: python, azurecli
77
ms.topic: tutorial
88
ms.prod: azure-python
99
author: jess-johnson-msft
@@ -476,4 +476,4 @@ To ingest relational data later in this series, upload a data file (blob) to an
476476
## Next Step
477477

478478
> [!div class="nextstepaction"]
479-
> [Next: Securely ingest relational data >>>](tutorial-deploy-serverless-cloud-etl-03.md)
479+
> [Next: Securely ingest relational data >>>](tutorial-deploy-serverless-cloud-etl-03.md)

articles/terraform/create-k8s-cluster-with-tf-and-aks.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ description: Learn how to create a Kubernetes Cluster with Azure Kubernetes Serv
44
keywords: azure devops terraform aks kubernetes
55
ms.topic: how-to
66
ms.date: 08/07/2021
7-
ms.custom: devx-track-terraform
7+
ms.custom: devx-track-terraform, devx-track-azurecli
8+
ms.devlang: azurecli
89
---
910

1011
# Create a Kubernetes cluster with Azure Kubernetes Service using Terraform
@@ -328,7 +329,7 @@ The Kubernetes tools can be used to verify the newly created cluster.
328329
```bash
329330
cat ./azurek8s
330331
```
331-
If you see `<< EOT` at the beginning and `EOT` at the end, edit the content of the file to remove these. This is necessary, otherwise you could receive the following message: `error: error loading config file "./azurek8s": yaml: line 2: mapping values ​​are not allowed in this context`
332+
If you see `<< EOT` at the beginning and `EOT` at the end, edit the content of the file to remove these. This is necessary, otherwise you could receive the following message: `error: error loading config file "./azurek8s": yaml: line 2: mapping values ??????are not allowed in this context`
332333
333334
1. Set an environment variable so that kubectl picks up the correct config.
334335

articles/terraform/get-started-windows-bash.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ description: Learn how to install Terraform on Windows with Bash
44
keywords: terraform azure cli devops install configure windows interactive login rbac service principal automated script
55
ms.topic: quickstart
66
ms.date: 08/07/2021
7-
ms.custom: devx-track-terraform, mode-api
7+
ms.custom: devx-track-terraform, mode-api, devx-track-azurecli
8+
ms.devlang: azurecli
89
adobe-target: true
910
# Customer intent: As a Windows user new to Terraform and Azure, I want install Terraform on Windows using the Bash environment.
1011
---

articles/terraform/get-started-windows-powershell.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ description: Learn how to configure Terraform on Windows with Azure PowerShell
44
keywords: terraform azure cli devops powershell install configure windows interactive login rbac service principal automated script
55
ms.topic: quickstart
66
ms.date: 01/28/2022
7-
ms.custom: devx-track-terraform, mode-api
7+
ms.custom: devx-track-terraform, mode-api, devx-track-azurecli
8+
ms.devlang: azurecli
89
adobe-target: true
910
# Customer intent: As a Windows user new to Terraform and Azure, I want install Terraform on Windows using Azure PowerShell.
1011
---

articles/ux-beta/app-db-javascript/deploy-nodejs-mongodb-app-service.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ ms.topic: tutorial
55
ms.date: 01/07/2022
66
ms.service: app-service
77
ms.role: developer
8-
ms.devlang: javascript
8+
ms.devlang: javascript, azurecli
99
ms.azure.dev-framework: expressjs
1010
ms.azure.devx-azure-tooling: ['azure-portal', 'vscode-azure-tools', 'azure-cli']
11-
ms.custom: scenarios:getting-started, languages:JavaScript, devx-track-js
11+
ms.custom: scenarios:getting-started, languages:JavaScript, devx-track-js, devx-track-azurecli
1212
ROBOTS: NOINDEX
1313
---
1414

articles/ux-beta/dotnet-app-service-sql/azure-app-service-sql.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ ms.topic: tutorial
55
ms.date: 10/27/2021
66
ms.service: azure
77
ms.role: developer
8-
ms.devlang: javascript
8+
ms.devlang: javascript, azurecli
99
author: alexwolfmsft
1010
ms.author: alexwolf
1111
ms.azure.dev-framework:
1212
ms.azure.devx-azure-tooling: ['azure-portal', 'vscode-azure-tools', 'azure-cli']
13-
ms.custom:
13+
ms.custom: devx-track-azurecli
1414
ROBOTS: NOINDEX
1515
---
1616

articles/ux-beta/storage-quickstart-dotnet/storage-quickstart-blobs-dotnet.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ description: Learn how to connect your applications to Azure Blob Storage
44
ms.date: 09/21/2021
55
ms.topic: article
66
ms.service: storage
7-
ms.custom: devx-track-dotnet
8-
ms.author: daberry
7+
ms.custom: devx-track-dotnet, devx-track-azurecli
8+
ms.author: daberry
9+
ms.devlang: azurecli
910
ROBOTS: NOINDEX
1011
---
1112

0 commit comments

Comments
 (0)