You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## (Optional) Block access to the default domain name
335
-
336
-
After you add the custom domain and configure your application, users will still be able to access the <tenant-name>.b2clogin.com domain. If you want to prevent access, you can configure the policy to check the authorization request "host name" against an allowed list of domains. The host name is the domain name that appears in the URL. The host name is available through `{Context:HostName}`[claim resolvers](claim-resolver-overview.md). Then you can present a custom error message.
337
-
338
-
1. Get the example of a conditional access policy that checks the host name from [GitHub](https://github.com/azure-ad-b2c/samples/tree/master/policies/check-host-name).
339
-
1. In each file, replace the string `yourtenant` with the name of your Azure AD B2C tenant. For example, if the name of your B2C tenant is *contosob2c*, all instances of `yourtenant.onmicrosoft.com` become `contosob2c.onmicrosoft.com`.
340
-
1. Upload the policy files in the following order: `B2C_1A_TrustFrameworkExtensions_HostName.xml` and then `B2C_1A_signup_signin_HostName.xml`.
Copy file name to clipboardExpand all lines: articles/azure-vmware/azure-vmware-solution-platform-updates.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -126,7 +126,7 @@ AV52 is now available in the East US 2 Region. This node size is used for inte
126
126
127
127
**Customer-managed keys using Azure Key Vault**
128
128
129
-
You can use customer-managed keys to bring and manage your master encryption keys to encrypt vSAN. Azure Key Vault allows you to store your privately managed keys securely to access your Azure VMware Solution data.
129
+
You can use customer-managed keys to bring and manage your master encryption keys to encrypt vSAN data. Azure Key Vault allows you to store your privately managed keys securely to access your Azure VMware Solution data.
130
130
131
131
**Azure NetApp Files - more storage options available**
132
132
@@ -140,7 +140,7 @@ For more information, see [Azure Migration and Modernization blog](https://techc
140
140
141
141
## January 2023
142
142
143
-
Starting January 2023, all new Azure VMware Solution private clouds are being deployed with Microsoft signed TLS certificate for vCenter Server and NSX-T Data Center.
143
+
Starting January 2023, all new Azure VMware Solution private clouds are being deployed with Microsoft signed TLS certificate for vCenter Server and NSX.
Copy file name to clipboardExpand all lines: articles/azure-vmware/faq.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -245,7 +245,7 @@ sections:
245
245
answer: Each ESXi host has two vSAN disk groups with a capacity tier of 15.2 TB and a 3.2-TB NVMe cache tier (1.6 TB in each disk group).
246
246
247
247
- question: Is data stored on the vSAN datastores encrypted at rest?
248
-
answer: Yes, vSAN datastores use data-at-rest encryption by default using keys stored in Azure Key Vault. The encryption solution is KMS-based and supports vCenter Server operations for key management. When a host is removed from a vSphere cluster, data on SSDs is invalidated immediately.
248
+
answer: Yes, vSAN datastores use data-at-rest encryption by default using keys stored in Azure Key Vault. The encryption solution is KMS-based and supports vCenter Server operations for key management. When a host is removed from a vSphere cluster, data on disk is invalidated immediately.
249
249
250
250
- question: Can I rename a datastore or cluster during creation?
251
251
answer: No, you can't change the name of datastores or clusters.
Copy file name to clipboardExpand all lines: articles/cosmos-db/emulator.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ Every request made against the emulator must be authenticated using a key over T
51
51
52
52
## Import emulator certificate
53
53
54
-
In some cases, you may wish to manually import the TLS/SS certificate from the emulator's running container into your host machine. This step avoids bad practices like disabling TLS/SSL validation in the SDK. For more information, see [import certificate](how-to-develop-emulator.md#export-the-emulators-tlsssl-certificate).
54
+
In some cases, you may wish to manually import the TLS/SS certificate from the emulator's running container into your host machine. This step avoids bad practices like disabling TLS/SSL validation in the SDK. For more information, see [import certificate](how-to-develop-emulator.md#import-the-emulators-tlsssl-certificate).
Copy file name to clipboardExpand all lines: articles/cosmos-db/how-to-develop-emulator.md
+60-11Lines changed: 60 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -351,9 +351,9 @@ The Docker (Windows) container image doesn't support the API for MongoDB.
351
351
352
352
::: zone-end
353
353
354
-
## Export the emulator's TLS/SSL certificate
354
+
## Import the emulator's TLS/SSL certificate
355
355
356
-
Export the certificate for the emulator to use the emulator with your preferred developer SDK without disable TLS/SSL on the client.
356
+
Import the emulator's TLS/SSL certificate to use the emulator with your preferred developer SDK without disabling TLS/SSL on the client.
357
357
358
358
::: zone pivot="api-apache-cassandra,api-apache-gremlin,api-table"
359
359
@@ -371,7 +371,7 @@ The Windows local installation of the emulator automatically imports the TLS/SSL
371
371
372
372
### [Docker (Linux container)](#tab/docker-linux)
373
373
374
-
The certificate for the emulator is available in the `_explorer/emulator.pem` path on the running container. Use `curl` to download the certificate from the running container to your local machine.
374
+
The certificate for the emulator is available at the path `_explorer/emulator.pem` on the running container. Use `curl` to download the certificate from the running container to your local machine.
1. Update CA certificates and regenerate the certificate bundle by using the appropriate command for your Linux distribution.
411
+
412
+
For **Debian-based** systems (e.g., Ubuntu), use:
413
+
414
+
```bash
415
+
sudo update-ca-certificates
416
+
```
417
+
418
+
For **Red Hat-based** systems (e.g., CentOS, Fedora), use:
419
+
```bash
420
+
sudo update-ca-trust
421
+
```
422
+
423
+
For more detailed instructions, consult the documentation specific to your Linux distribution.
410
424
411
425
### [Windows (local)](#tab/windows)
412
426
@@ -418,7 +432,7 @@ The Windows local installation of the emulator automatically imports the TLS/SSL
418
432
419
433
## Connect to the emulator from the SDK
420
434
421
-
Each SDK includes a client class typically used to connect the SDK to your Azure Cosmos DB account. Using the [emulator's credentials](emulator.md#authentication), you can connect the SDK to the emulator instance instead.
435
+
Each SDK includes a client class typically used to connect the SDK to your Azure Cosmos DB account. By using the [emulator's credentials](emulator.md#authentication), you can connect the SDK to the emulator instance instead.
422
436
423
437
::: zone pivot="api-nosql"
424
438
@@ -467,7 +481,7 @@ Use the [Azure Cosmos DB API for NoSQL .NET SDK](nosql/quickstart-dotnet.md) to
467
481
```
468
482
469
483
> [!WARNING]
470
-
> If you get a SSL error, you may need to disable TLS/SSL foryour application. This commonly occurs if you are developing on your local machine, using the Azure Cosmos DB emulatorin a container, and have not [imported the container's SSL certificate](#export-the-emulators-tlsssl-certificate). To resolve this, configure the client's options to disable TLS/SSL validation before creating the client:
484
+
> If you get a SSL error, you may need to disable TLS/SSL for your application. This commonly occurs if you are developing on your local machine, using the Azure Cosmos DB emulator in a container, and have not [imported the container's SSL certificate](#import-the-emulators-tlsssl-certificate). To resolve this, configure the client's options to disable TLS/SSL validation before creating the client:
471
485
>
472
486
>```csharp
473
487
> CosmosClientOptions options = new ()
@@ -527,7 +541,7 @@ Use the [Azure Cosmos DB API for NoSQL Python SDK](nosql/quickstart-python.md) t
527
541
```
528
542
529
543
> [!WARNING]
530
-
> If you get a SSL error, you may need to disable TLS/SSL for your application. This commonly occurs if you are developing on your local machine, using the Azure Cosmos DB emulator in a container, and have not [imported the container's SSL certificate](#export-the-emulators-tlsssl-certificate). To resolve this, configure the application to disable TLS/SSL validation before creating the client:
544
+
> If you get a SSL error, you may need to disable TLS/SSL for your application. This commonly occurs if you are developing on your local machine, using the Azure Cosmos DB emulator in a container, and have not [imported the container's SSL certificate](#import-the-emulators-tlsssl-certificate). To resolve this, configure the application to disable TLS/SSL validation before creating the client:
531
545
>
532
546
>```python
533
547
> import urllib3
@@ -536,6 +550,41 @@ Use the [Azure Cosmos DB API for NoSQL Python SDK](nosql/quickstart-python.md) t
536
550
>```
537
551
>
538
552
553
+
If you are still facing SSL errors, it is possible that Python is retrieving the certificates from a different certificate store. To determine the path where Python is looking for the certificates, follow these steps:
554
+
>[!IMPORTANT]
555
+
>If you are using a Python **virtual environment** (venv) ensure it is **activated** before running the commands!
556
+
1. Open a terminal
557
+
1. Start the Python interpreter by typing python or python3, depending on your Python version.
558
+
1. In the Python interpreter, run the following commands:
559
+
```python
560
+
from requests.utils import DEFAULT_CA_BUNDLE_PATH
561
+
print(DEFAULT_CA_BUNDLE_PATH)
562
+
```
563
+
564
+
**Inside a virtual environment**, the path may be (at least in Ubuntu):
**Outside of a virtual environment**, the path may be (at least in Ubuntu):
570
+
```bash
571
+
/etc/ssl/certs/ca-certificates.crt
572
+
```
573
+
574
+
1. Once you have identified the DEFAULT_CA_BUNDLE_PATH, open a **new terminal** and run the following commands to append the emulator certificate to the certificate bundle:
575
+
> [!IMPORTANT]
576
+
> If DEFAULT_CA_BUNDLE_PATH variable points to a **system directory**, you might encounter a **"Permission denied"** error. In this case, you will need to run the commands with elevated privileges (as root). Also, you will need to [update and regenerate the certificate bundle](#import-the-emulators-tlsssl-certificate) after executing the provided commands.
577
+
578
+
```bash
579
+
# Add a new line to the certificate bundle
580
+
echo>> /path/to/ca_bundle
581
+
```
582
+
583
+
```bash
584
+
# Append the emulator certificate to the certificate bundle
Use the [Azure Cosmos DB API for NoSQL Node.js SDK](nosql/quickstart-nodejs.md) to connect to the emulator from a Node.js/JavaScript application.
@@ -579,7 +628,7 @@ Use the [Azure Cosmos DB API for NoSQL Node.js SDK](nosql/quickstart-nodejs.md)
579
628
```
580
629
581
630
> [!WARNING]
582
-
> If you get a SSL error, you may need to disable TLS/SSL for your application. This commonly occurs if you are developing on your local machine, using the Azure Cosmos DB emulator in a container, and have not [imported the container's SSL certificate](#export-the-emulators-tlsssl-certificate). To resolve this, configure the application to disable TLS/SSL validation before creating the client:
631
+
> If you get a SSL error, you may need to disable TLS/SSL for your application. This commonly occurs if you are developing on your local machine, using the Azure Cosmos DB emulator in a container, and have not [imported the container's SSL certificate](#import-the-emulators-tlsssl-certificate). To resolve this, configure the application to disable TLS/SSL validation before creating the client:
583
632
>
584
633
>```javascript
585
634
> process.env.NODE_TLS_REJECT_UNAUTHORIZED = 0
@@ -715,7 +764,7 @@ Use the [MongoDB Node.js driver](mongodb/quickstart-nodejs.md) to connect to the
715
764
```
716
765
717
766
> [!WARNING]
718
-
> If you get a SSL error, you may need to disable TLS/SSL for your application. This commonly occurs if you are developing on your local machine, using the Azure Cosmos DB emulator in a container, and have not [imported the container's SSL certificate](#export-the-emulators-tlsssl-certificate). To resolve this, configure the application to disable TLS/SSL validation before creating the client:
767
+
> If you get a SSL error, you may need to disable TLS/SSL for your application. This commonly occurs if you are developing on your local machine, using the Azure Cosmos DB emulator in a container, and have not [imported the container's SSL certificate](#import-the-emulators-tlsssl-certificate). To resolve this, configure the application to disable TLS/SSL validation before creating the client:
719
768
>
720
769
>```javascript
721
770
> const client = new MongoClient(
@@ -858,7 +907,7 @@ Use the [Apache Cassandra Node.js driver](cassandra/manage-data-nodejs.md) to us
858
907
```
859
908
860
909
> [!WARNING]
861
-
> If you get a SSL error, you may need to disable TLS/SSL foryour application. This commonly occurs if you are developing on your local machine, using the Azure Cosmos DB emulatorin a container, and have not [imported the container's SSL certificate](#export-the-emulators-tlsssl-certificate). To resolve this, configure the client to disable TLS/SSL validation:
910
+
> If you get a SSL error, you may need to disable TLS/SSL foryour application. This commonly occurs if you are developing on your local machine, using the Azure Cosmos DB emulatorin a container, and have not [imported the container's SSL certificate](#import-the-emulators-tlsssl-certificate). To resolve this, configure the client to disable TLS/SSL validation:
862
911
>
863
912
> ```javascript
864
913
> const client = new Client({
@@ -1136,7 +1185,7 @@ Use the [Azure Tables JavaScript SDK](cassandra/manage-data-nodejs.md) to use th
1136
1185
```
1137
1186
1138
1187
> [!WARNING]
1139
-
> If you get a SSL error, you may need to disable TLS/SSL for your application. This commonly occurs if you are developing on your local machine, using the Azure Cosmos DB emulator in a container, and have not [imported the container's SSL certificate](#export-the-emulators-tlsssl-certificate). To resolve this, configure the client to disable TLS/SSL validation:
1188
+
> If you get a SSL error, you may need to disable TLS/SSL for your application. This commonly occurs if you are developing on your local machine, using the Azure Cosmos DB emulator in a container, and have not [imported the container's SSL certificate](#import-the-emulators-tlsssl-certificate). To resolve this, configure the client to disable TLS/SSL validation:
Two Azure resources are defined in the Bicep file:
78
78
79
-
-[`Microsoft.DocumentDB/databaseAccounts`](/azure/templates/microsoft.documentdb/databaseAccounts?pivots=deployment-language-bicep): Creates an Azure Cosmos DB for MongoDB vCore cluster.
80
-
-[`Microsoft.DocumentDB/databaseAccounts/sqlDatabases`](/azure/templates/microsoft.documentdb/databaseAccounts?pivots=deployment-language-bicep): Creates firewall rules for the Azure Cosmos DB for MongoDB vCore cluster.
79
+
-[`Microsoft.DocumentDB/mongoclusters`](/azure/templates/microsoft.documentdb/mongoclusters?pivots=deployment-language-bicep): Creates an Azure Cosmos DB for MongoDB vCore cluster.
80
+
-[`Microsoft.DocumentDB/mongoClusters/firewallRules`](/azure/templates/microsoft.documentdb/mongoclusters?pivots=deployment-language-bicep): Creates firewall rules for the Azure Cosmos DB for MongoDB vCore cluster.
Copy file name to clipboardExpand all lines: articles/dev-box/concept-dev-box-network-requirements.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,9 @@ To use your own network and provision [Microsoft Entra hybrid joined](/azure/dev
34
34
35
35
When connecting to resources on-premises through Microsoft Entra hybrid joins, work with your Azure network topology expert. Best practice is to implement a [hub-and-spoke network topology](/azure/cloud-adoption-framework/ready/azure-best-practices/hub-spoke-network-topology). The hub is the central point that connects to your on-premises network; you can use an Express Route, a site-to-site VPN, or a point-to-site VPN. The spoke is the virtual network that contains the dev boxes. You peer the dev box virtual network to the on-premises connected virtual network to provide access to on-premises resources. Hub and spoke topology can help you manage network traffic and security.
36
36
37
+
> [!IMPORTANT]
38
+
> When using your own network, Microsoft Dev Box currently does not support moving network interfaces to a different virtual network or a different subnet.
39
+
37
40
## Allow network connectivity
38
41
39
42
In your network configuration, you must allow traffic to the following service URLs and ports to support provisioning, management, and remote connectivity of dev boxes.
Copy file name to clipboardExpand all lines: articles/sentinel/quickstart-onboard.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: 'Quickstart: Onboard in Microsoft Sentinel'
2
+
title: 'Quickstart: Onboard to Microsoft Sentinel'
3
3
description: In this quickstart, you enable Microsoft Sentinel, and set up data connectors to monitor and protect your environment.
4
4
author: yelevin
5
5
ms.author: yelevin
@@ -44,16 +44,18 @@ To get started, add Microsoft Sentinel to an existing workspace or create a new
44
44
45
45
:::image type="content" source="media/quickstart-onboard/search-product.png" alt-text="Screenshot of searching for a service while enabling Microsoft Sentinel.":::
46
46
47
-
1. Select **Add**.
47
+
1. Select **Create**.
48
48
49
49
1. Select the workspace you want to use or create a new one. You can run Microsoft Sentinel on more than one workspace, but the data is isolated to a single workspace.
50
50
51
51
:::image type="content" source="media/quickstart-onboard/choose-workspace.png" alt-text="Screenshot of choosing a workspace while enabling Microsoft Sentinel.":::
52
52
53
53
- The default workspaces created by Microsoft Defender for Cloud aren't shown in the list. You can't install Microsoft Sentinel on these workspaces.
54
-
- Once deployed on a workspace, Microsoft Sentinel **doesn't currently support** moving that workspace to another resource group or subscription.
54
+
- Once deployed on a workspace, Microsoft Sentinel **doesn't support** moving that workspace to another resource group or subscription.
55
+
56
+
1. Select **Add**.
55
57
56
-
1. Select **Add Microsoft Sentinel**.
58
+
As an alternative to using the portal, you can onboard to Microsoft Sentinel using an API request, by calling the [OnboardingStates ARM api](/rest/api/securityinsights/sentinel-onboarding-states/create?view=rest-securityinsights-2024-03-01&preserve-view=true&tabs=HTTP).
0 commit comments