Skip to content

Commit 12a26f6

Browse files
authored
Merge pull request #100738 from MicrosoftDocs/master
Merge Master to Live, 3 AM
2 parents f53cd24 + 37e4cff commit 12a26f6

File tree

232 files changed

+2586
-1288
lines changed

Some content is hidden

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

232 files changed

+2586
-1288
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24605,6 +24605,16 @@
2460524605
"redirect_url": "/azure/storage/blobs/storage-quickstart-blobs-java",
2460624606
"redirect_document_id": false
2460724607
},
24608+
{
24609+
"source_path": "articles/storage/blobs/storage-quickstart-blobs-nodejs-v10.md",
24610+
"redirect_url": "/azure/storage/blobs/storage-quickstart-blobs-nodejs-legacy",
24611+
"redirect_document_id": false
24612+
},
24613+
{
24614+
"source_path": "articles/storage/blobs/storage-quickstart-blobs-javascript-client-libraries-v10.md",
24615+
"redirect_url": "/azure/storage/blobs/storage-quickstart-blobs-javascript-client-libraries-legacy",
24616+
"redirect_document_id": false
24617+
},
2460824618
{
2460924619
"source_path": "articles/storage/blobs/storage-nodejs-how-to-use-blob-storage.md",
2461024620
"redirect_url": "/azure/storage/blobs/storage-quickstart-blobs-nodejs",

CODEOWNERS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ articles/terraform/ @TomArcherMsft
1212
articles/governance/ @DCtheGeek
1313

1414
# Configuration
15-
*.json @SyntaxC4
16-
.acrolinx-config.edn @MonicaRush
17-
articles/zone-pivot-groups.yml @SyntaxC4
15+
*.json @SyntaxC4 @snoviking @arob98
16+
.acrolinx-config.edn @MonicaRush @arob98
17+
articles/zone-pivot-groups.yml @SyntaxC4 @snoviking @arob98

articles/azure-australia/azure-key-vault.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This article will focus on management of keys using Key Vault.
2828

2929
### Deployment options
3030

31-
There are two options for creating Azure Key Vaults. Both options use the Thales nShield family of Hardware Security Modules (HSM), are Federal Information Processing Standards (FIPS) validated, and are approved to store keys in PROTECTED environments. The options are:
31+
There are two options for creating Azure Key Vaults. Both options use the nCipher nShield family of Hardware Security Modules (HSM), are Federal Information Processing Standards (FIPS) validated, and are approved to store keys in PROTECTED environments. The options are:
3232

3333
- **Software-protected vaults:** FIPS 140-2 level 1 validated. Keys stored on an HSM. Encryption and decryption operations are performed in compute resources on Azure.
3434
- **HSM-protected vaults:** FIPS 140-2 level 2 validated. Keys stored on an HSM. Encryption and decryption operations are performed on the HSM.
@@ -65,7 +65,14 @@ Access to Key Vaults should be explicitly restricted to the minimum set of netwo
6565

6666
### Bring Your Own Key (BYOK)
6767

68-
Key Vault supports BYOK. BYOK enables users to import keys from their existing key infrastructures. Thales provides an [Australian toolset](https://www.microsoft.com/download/details.aspx?id=45345) to support the secure transfer and import of keys from an external HSM (for example, keys generated with an offline workstation) into Key Vault.
68+
Key Vault supports BYOK. BYOK enables users to import keys from their existing key infrastructures. The BYOK toolset supports the secure transfer and import of keys from an external HSM (for example, keys generated with an offline workstation) into Key Vault.
69+
70+
Go to the Microsoft Download Center and [download the Azure Key Vault BYOK toolset](https://www.microsoft.com/download/details.aspx?id=45345) for Australia. The package name to download and its corresponding SHA-256 package hash are:
71+
72+
|Package Name|SHA-256 Hash|
73+
|---|---|
74+
|KeyVault-BYOK-Tools-Australia.zip|CD0FB7365053DEF8C35116D7C92D203C64A3D3EE2452A025223EEB166901C40A|
75+
|
6976

7077
### Key Vault auditing and logging
7178

articles/azure-functions/functions-create-cosmos-db-triggered-function.md

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,20 @@ Next, you create a function in the new function app.
5959
| Setting | Suggested value | Description |
6060
| ------------ | ---------------- | ------------------------------------------ |
6161
| **Name** | Default | Use the default function name suggested by the template.|
62-
| **Azure Cosmos DB account connection** | New setting | Select **New**, then choose your **Subscription**, the **Database account** you created earlier, and **Select**. This creates an application setting for your account connection. This setting is used by the binding to connect to the database. |
63-
| **Collection name** | Items | Name of collection to be monitored. |
64-
| **Create lease collection if it doesn't exist** | Checked | The collection doesn't already exist, so create it. |
65-
| **Database name** | Tasks | Name of database with the collection to be monitored. |
62+
| **Azure Cosmos DB account connection** | New setting | Select **New**, then choose your **Subscription**, the **Database account** you created earlier, and **Select**. This creates an application setting for your account connection. This setting is used by the binding to connection to the database. |
63+
| **Container name** | Items | Name of container to be monitored. |
64+
| **Create lease container if it doesn't exist** | Checked | The container doesn't already exist, so create it. |
65+
| **Database name** | Tasks | Name of database with the container to be monitored. |
6666

6767
1. Click **Create** to create your Azure Cosmos DB triggered function. After the function is created, the template-based function code is displayed.
6868

6969
![Cosmos DB function template in C#](./media/functions-create-cosmos-db-triggered-function/function-cosmosdb-template.png)
7070

7171
This function template writes the number of documents and the first document ID to the logs.
7272

73-
Next, you connect to your Azure Cosmos DB account and create the `Items` collection in the `Tasks` database.
73+
Next, you connect to your Azure Cosmos DB account and create the `Items` container in the `Tasks` database.
7474

75-
## Create the Items collection
75+
## Create the Items container
7676

7777
1. Open a second instance of the [Azure portal](https://portal.azure.com) in a new tab in the browser.
7878

@@ -82,33 +82,32 @@ Next, you connect to your Azure Cosmos DB account and create the `Items` collect
8282

8383
1. Choose your Azure Cosmos DB account, then select the **Data Explorer**.
8484

85-
1. In **Collections**, choose **taskDatabase** and select **New Collection**.
85+
1. Under **SQL API**, choose **Tasks** database and select **New Container**.
8686

87-
![Create a collection](./media/functions-create-cosmos-db-triggered-function/cosmosdb-create-collection.png)
87+
![Create a container](./media/functions-create-cosmos-db-triggered-function/cosmosdb-create-container.png)
8888

89-
1. In **Add Collection**, use the settings shown in the table below the image.
89+
1. In **Add Container**, use the settings shown in the table below the image.
9090

91-
![Define the taskCollection](./media/functions-create-cosmos-db-triggered-function/cosmosdb-create-collection2.png)
91+
![Define the Tasks container](./media/functions-create-cosmos-db-triggered-function/cosmosdb-create-container2.png)
9292

9393
| Setting|Suggested value|Description |
9494
| ---|---|--- |
9595
| **Database ID** | Tasks |The name for your new database. This must match the name defined in your function binding. |
96-
| **Collection ID** | Items | The name for the new collection. This must match the name defined in your function binding. |
97-
| **Storage capacity** | Fixed (10 GB)|Use the default value. This value is the storage capacity of the database. |
98-
| **Throughput** |400 RU| Use the default value. If you want to reduce latency, you can scale up the throughput later. |
99-
| **[Partition key](../cosmos-db/partition-data.md)** | /category|A partition key that distributes data evenly to each partition. Selecting the correct partition key is important in creating a performant collection. |
96+
| **Container ID** | Items | The name for the new container. This must match the name defined in your function binding. |
97+
| **[Partition key](../cosmos-db/partition-data.md)** | /category|A partition key that distributes data evenly to each partition. Selecting the correct partition key is important in creating a performant container. |
98+
| **Throughput** |400 RU| Use the default value. If you want to reduce latency, you can scale up the throughput later. |
10099

101-
1. Click **OK** to create the Items collection. It may take a short time for the collection to get created.
100+
1. Click **OK** to create the Items container. It may take a short time for the container to get created.
102101

103-
After the collection specified in the function binding exists, you can test the function by adding documents to this new collection.
102+
After the container specified in the function binding exists, you can test the function by adding items to this new container.
104103

105104
## Test the function
106105

107-
1. Expand the new **taskCollection** collection in Data Explorer, choose **Documents**, then select **New Document**.
106+
1. Expand the new **Items** container in Data Explorer, choose **Items**, then select **New Item**.
108107

109-
![Create a document in taskCollection](./media/functions-create-cosmos-db-triggered-function/create-document-in-collection.png)
108+
![Create an item in Items container](./media/functions-create-cosmos-db-triggered-function/create-item-in-container.png)
110109

111-
1. Replace the contents of the new document with the following content, then choose **Save**.
110+
1. Replace the contents of the new item with the following content, then choose **Save**.
112111

113112
{
114113
"id": "task1",
12.9 KB
Loading
12 KB
Loading
21 KB
Loading

0 commit comments

Comments
 (0)