Skip to content

Commit 7e8666d

Browse files
authored
Apply suggestions from code review
Added periods to alt text descriptions and to metadata description.
1 parent bfb9a8a commit 7e8666d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/azure-resource-manager/bicep/quickstart-create-bicep-use-visual-studio.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Create Bicep files - Visual Studio
3-
description: Use Visual Studio and the Bicep extension to create Bicep files for deploy Azure resources
3+
description: Use Visual Studio and the Bicep extension to create Bicep files for deploy Azure resources.
44
ms.date: 09/12/2022
55
ms.topic: quickstart
66

@@ -26,7 +26,7 @@ Visual Studio with the Bicep extension simplifies development by providing pre-d
2626

2727
In *main.bicep*, type **vnet**. Select **res-vnet** from the list, and then press **[TAB]** or **[ENTER]**.
2828

29-
:::image type="content" source="./media/quickstart-create-bicep-use-visual-studio/add-snippet.png" alt-text="Screenshot of adding snippet for virtual network":::
29+
:::image type="content" source="./media/quickstart-create-bicep-use-visual-studio/add-snippet.png" alt-text="Screenshot of adding snippet for virtual network.":::
3030

3131
> [!TIP]
3232
> If you don't see those intellisense options in Visual Studio, make sure you've installed the Bicep extension as specified in [Prerequisites](#prerequisites). If you have installed the extension, give the Bicep language service some time to start after opening your Bicep file. It usually starts quickly, but you will not have intellisense options until it starts.
@@ -79,7 +79,7 @@ param storageName
7979

8080
When you add a space after **storageName**, notice that intellisense offers the data types that are available for the parameter. Select **string**.
8181

82-
:::image type="content" source="./media/quickstart-create-bicep-use-visual-studio/add-param.png" alt-text="Screenshot of adding string type to parameter":::
82+
:::image type="content" source="./media/quickstart-create-bicep-use-visual-studio/add-param.png" alt-text="Screenshot of adding string type to parameter.":::
8383

8484
You have the following parameter:
8585

@@ -91,7 +91,7 @@ This parameter works fine, but storage accounts have limits on the length of the
9191

9292
Add a line above the parameter, and type **@**. You see the available decorators. Notice there are decorators for both **minLength** and **maxLength**.
9393

94-
:::image type="content" source="./media/quickstart-create-bicep-use-visual-studio/add-decorators.png" alt-text="Screenshot of adding decorators to parameter":::
94+
:::image type="content" source="./media/quickstart-create-bicep-use-visual-studio/add-decorators.png" alt-text="Screenshot of adding decorators to parameter.":::
9595

9696
Add both decorators and specify the character limits, as shown below:
9797

@@ -132,15 +132,15 @@ resource exampleStorage
132132

133133
When you add a space after the symbolic name, a list of resource types is displayed. Continue typing **storage** until you can select it from the available options.
134134

135-
:::image type="content" source="./media/quickstart-create-bicep-use-visual-studio/select-resource-type.png" alt-text="Screenshot of selecting storage accounts for resource type":::
135+
:::image type="content" source="./media/quickstart-create-bicep-use-visual-studio/select-resource-type.png" alt-text="Screenshot of selecting storage accounts for resource type.":::
136136

137137
After selecting **Microsoft.Storage/storageAccounts**, you're presented with the available API versions. Select **2021-09-01** or the latest API version. We recommend using the latest API version.
138138

139-
:::image type="content" source="./media/quickstart-create-bicep-use-visual-studio/select-api-version.png" alt-text="Screenshot of selecting API version for resource type":::
139+
:::image type="content" source="./media/quickstart-create-bicep-use-visual-studio/select-api-version.png" alt-text="Screenshot of selecting API version for resource type.":::
140140

141141
After the single quote for the resource type, add `=` and a space. You're presented with options for adding properties to the resource. Select **required-properties**.
142142

143-
:::image type="content" source="./media/quickstart-create-bicep-use-visual-studio/select-required-properties.png" alt-text="Screenshot of adding required properties":::
143+
:::image type="content" source="./media/quickstart-create-bicep-use-visual-studio/select-required-properties.png" alt-text="Screenshot of adding required properties.":::
144144

145145
This option adds all of the properties for the resource type that are required for deployment. After selecting this option, your storage account has the following properties:
146146

0 commit comments

Comments
 (0)