Skip to content

Commit babc884

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into adfssismove
2 parents 38fa152 + b97eae2 commit babc884

File tree

124 files changed

+541
-301
lines changed

Some content is hidden

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

124 files changed

+541
-301
lines changed

articles/active-directory/hybrid/how-to-connect-migrate-groups.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ if ($group -eq $null)
105105
}
106106
107107
$csvFile = Import-Csv -Path $inputCsv -ErrorAction Stop
108-
$msDSConsistencyGuid = [GUID] $csvFile.'mS-DS-ConsistencyGuid'
108+
$msDSConsistencyGuid = $csvFile.'mS-DS-ConsistencyGuid'
109109
$objectGuid = [GUID] $csvFile.'objectGUID'
110110
$targetGuid = $msDSConsistencyGuid
111111

articles/active-directory/manage-apps/manage-self-service-access.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.workload: identity
1212
ms.tgt_pltfrm: na
1313
ms.devlang: na
1414
ms.topic: article
15-
ms.date: 10/23/2018
15+
ms.date: 04/20/2020
1616
ms.author: mimart
1717

1818
ms.collection: M365-identity-device-management
@@ -38,6 +38,9 @@ Using this feature, you can:
3838

3939
- Optionally automatically assign self-service assigned users to an application role directly.
4040

41+
> [!NOTE]
42+
> An Azure Active Directory Premium (P1 or P2) license is required for users to request to join a self-service app and for owners to approve or deny requests. Without an Azure Active Directory Premium license, users cannot add self-service apps.
43+
4144
## Enable self-service application access to allow users to find their own applications
4245

4346
Self-service application access is a great way to allow users to self-discover applications, and optionally allow the business group to approve access to those applications. For password single-sign on applications, you can also allow the business group to manage the credentials assigned to those users from their own My Apps access panels.

articles/app-service/app-service-web-get-started-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ Once deployment has completed, browse to the deployed application using the foll
119119
> [Connect to Azure SQL database with Java](/azure/sql-database/sql-database-connect-query-java?toc=%2Fazure%2Fjava%2Ftoc.json)
120120
121121
> [!div class="nextstepaction"]
122-
> [Connect to Azure DB for MySQL with Java](/azure/mysql/connect-java?toc=/azure/java/toc.json)
122+
> [Connect to Azure DB for MySQL with Java](/azure/mysql/connect-java)
123123
124124
> [!div class="nextstepaction"]
125-
> [Connect to Azure DB for PostgreSQL with Java](/azure/postgresql/connect-java?toc=/azure/java/toc.json)
125+
> [Connect to Azure DB for PostgreSQL with Java](/azure/postgresql/connect-java)
126126
127127
> [!div class="nextstepaction"]
128128
> [Azure for Java Developers Resources](/java/azure/)

articles/app-service/configure-language-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ Azure's supported Java Development Kit (JDK) is [Zulu](https://www.azul.com/down
314314

315315
Major version updates will be provided through new runtime options in Azure App Service for Windows. Customers update to these newer versions of Java by configuring their App Service deployment and are responsible for testing and ensuring the major update meets their needs.
316316

317-
Supported JDKs are automatically patched on a quarterly basis in January, April, July, and October of each year. For more information on Java on Azure, please see [this support document](https://docs.microsoft.com/azure/java/jdk/).
317+
Supported JDKs are automatically patched on a quarterly basis in January, April, July, and October of each year. For more information on Java on Azure, please see [this support document](https://docs.microsoft.com/azure/developer/java/fundamentals/java-jdk-long-term-support).
318318

319319
### Security updates
320320

articles/app-service/containers/quickstart-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,10 @@ This command may take a minute to run.
137137
> [Connect to Azure SQL database with Java](/azure/sql-database/sql-database-connect-query-java?toc=%2Fazure%2Fjava%2Ftoc.json)
138138
139139
> [!div class="nextstepaction"]
140-
> [Connect to Azure DB for MySQL with Java](/azure/mysql/connect-java?toc=/azure/java/toc.json)
140+
> [Connect to Azure DB for MySQL with Java](/azure/mysql/connect-java)
141141
142142
> [!div class="nextstepaction"]
143-
> [Connect to Azure DB for PostgreSQL with Java](/azure/postgresql/connect-java?toc=/azure/java/toc.json)
143+
> [Connect to Azure DB for PostgreSQL with Java](/azure/postgresql/connect-java)
144144
145145
> [!div class="nextstepaction"]
146146
> [Configure Java app](configure-custom-container.md)

articles/azure-functions/functions-create-first-azure-function-azure-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ There is also a [Visual Studio Code-based version](functions-create-first-functi
1616

1717
::: zone pivot="programming-language-java"
1818
> [!NOTE]
19-
> If Maven is not your prefered development tool, check out our similar tutorials for Java developers using [Gradle](/azure/azure-functions/functions-create-first-java-gradle), [IntelliJ IDEA](/azure/java/intellij/azure-toolkit-for-intellij-quickstart-functions) and [VS Code](/azure/azure-functions/functions-create-first-function-vs-code?pivots=programming-language-java).
19+
> If Maven is not your prefered development tool, check out our similar tutorials for Java developers using [Gradle](/azure/azure-functions/functions-create-first-java-gradle), [IntelliJ IDEA](/azure/developer/java/toolkit-for-intellij/quickstart-functions) and [VS Code](/azure/azure-functions/functions-create-first-function-vs-code?pivots=programming-language-java).
2020
::: zone-end
2121

2222
[!INCLUDE [functions-requirements-cli](../../includes/functions-requirements-cli.md)]

articles/azure-functions/functions-create-first-function-vs-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ There's also a [CLI-based version](functions-create-first-azure-function-azure-c
1717

1818
::: zone pivot="programming-language-java"
1919
> [!NOTE]
20-
> If VS Code is not your prefered development tool, check out our similar tutorials for Java developers using [Maven](/azure/azure-functions/functions-create-first-azure-function-azure-cli?pivots=programming-language-java), [Gradle](/azure/azure-functions/functions-create-first-java-gradle) and [IntelliJ IDEA](/azure/java/intellij/azure-toolkit-for-intellij-quickstart-functions).
20+
> If VS Code is not your prefered development tool, check out our similar tutorials for Java developers using [Maven](/azure/azure-functions/functions-create-first-azure-function-azure-cli?pivots=programming-language-java), [Gradle](/azure/azure-functions/functions-create-first-java-gradle) and [IntelliJ IDEA](/azure/developer/java/toolkit-for-intellij/quickstart-functions).
2121
::: zone-end
2222

2323
## Configure your environment

articles/azure-functions/functions-create-first-java-gradle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.date: 04/08/2020
1212
This article shows you how to build and publish a Java function project to Azure Functions with the Gradle command-line tool. When you're done, your function code runs in Azure in a [serverless hosting plan](functions-scale.md#consumption-plan) and is triggered by an HTTP request.
1313

1414
> [!NOTE]
15-
> If Gradle is not your prefered development tool, check out our similar tutorials for Java developers using [Maven](/azure/azure-functions/functions-create-first-azure-function-azure-cli?pivots=programming-language-java), [IntelliJ IDEA](/azure/java/intellij/azure-toolkit-for-intellij-quickstart-functions) and [VS Code](/azure/azure-functions/functions-create-first-function-vs-code?pivots=programming-language-java).
15+
> If Gradle is not your prefered development tool, check out our similar tutorials for Java developers using [Maven](/azure/azure-functions/functions-create-first-azure-function-azure-cli?pivots=programming-language-java), [IntelliJ IDEA](/azure/developer/java/toolkit-for-intellij/quickstart-functions) and [VS Code](/azure/azure-functions/functions-create-first-function-vs-code?pivots=programming-language-java).
1616
1717
## Prerequisites
1818

articles/azure-monitor/platform/stream-monitoring-data-event-hubs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Routing your monitoring data to an event hub with Azure Monitor enables you to e
5151
| ArcSight | No | The ArcSight Azure Event Hub smart connector is available as part of [the ArcSight smart connector collection](https://community.softwaregrp.com/t5/Discussions/Announcing-General-Availability-of-ArcSight-Smart-Connectors-7/m-p/1671852). |
5252
| Syslog server | No | If you want to stream Azure Monitor data directly to a syslog server, you can use a [solution based on an Azure function](https://github.com/miguelangelopereira/azuremonitor2syslog/).
5353
| LogRhythm | No| Instructions to set up LogRhythm to collect logs from an event hub are available [here](https://logrhythm.com/six-tips-for-securing-your-azure-cloud-environment/).
54-
|Logz.io | Yes | For more information, see [Getting started with monitoring and logging using Logz.io for Java apps running on Azure](https://docs.microsoft.com/azure/java/java-get-started-with-logzio)
54+
|Logz.io | Yes | For more information, see [Getting started with monitoring and logging using Logz.io for Java apps running on Azure](https://docs.microsoft.com/azure/developer/java/fundamentals/java-get-started-with-logzio)
5555

5656

5757
## Next Steps

articles/bastion/bastion-nsg.md

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: charwen
66

77
ms.service: bastion
88
ms.topic: conceptual
9-
ms.date: 02/03/2020
9+
ms.date: 04/20/2020
1010
ms.author: charwen
1111
---
1212
# Working with NSG access and Azure Bastion
@@ -27,9 +27,9 @@ In this diagram:
2727

2828
This section shows you the network traffic between the user and Azure Bastion, and through to target VMs in your virtual network:
2929

30-
### AzureBastionSubnet
30+
### <a name="apply"></a>AzureBastionSubnet
3131

32-
Azure Bastion is deployed specifically to the AzureBastionSubnet.
32+
Azure Bastion is deployed specifically to ***AzureBastionSubnet***.
3333

3434
* **Ingress Traffic:**
3535

@@ -41,19 +41,11 @@ Azure Bastion is deployed specifically to the AzureBastionSubnet.
4141
* **Egress Traffic to target VMs:** Azure Bastion will reach the target VMs over private IP. The NSGs need to allow egress traffic to other target VM subnets for port 3389 and 22.
4242
* **Egress Traffic to other public endpoints in Azure:** Azure Bastion needs to be able to connect to various public endpoints within Azure (for example, for storing diagnostics logs and metering logs). For this reason, Azure Bastion needs outbound to 443 to **AzureCloud** service tag.
4343

44-
* **Target VM Subnet:** This is the subnet that contains the target virtual machine that you want to RDP/SSH to.
44+
### Target VM Subnet
45+
This is the subnet that contains the target virtual machine that you want to RDP/SSH to.
4546

4647
* **Ingress Traffic from Azure Bastion:** Azure Bastion will reach to the target VM over private IP. RDP/SSH ports (ports 3389/22 respectively) need to be opened on the target VM side over private IP. As a best practice, you can add the Azure Bastion Subnet IP address range in this rule to allow only Bastion to be able to open these ports on the target VMs in your target VM subnet.
4748

48-
## <a name="apply"></a>Apply NSGs to AzureBastionSubnet
49-
50-
If you create and apply an NSG to ***AzureBastionSubnet***, make sure you have added the following rules in your NSG. If you do not add these rules, the NSG creation/update will fail:
51-
52-
* **Control plane connectivity:** Inbound on 443 from GatewayManager
53-
* **Diagnostics logging and others:** Outbound on 443 to AzureCloud. Regional tags within this service tag are not supported yet.
54-
* **Target VM:** Outbound for 3389 and 22 to VirtualNetwork
55-
56-
An NSG rule example is available for reference in this [quickstart template](https://github.com/Azure/azure-quickstart-templates/tree/master/101-azure-bastion-nsg).
5749

5850
## Next steps
5951

0 commit comments

Comments
 (0)