Skip to content

Commit c9aa512

Browse files
committed
updates3
1 parent f906c81 commit c9aa512

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

articles/azure-resource-manager/bicep/linter-rule-use-recent-api-versions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Linter rule - use recent API versions
33
description: Linter rule - use recent API versions
44
ms.topic: reference
55
ms.custom: devx-track-bicep
6-
ms.date: 10/03/2024
6+
ms.date: 10/09/2024
77
---
88

99
# Linter rule - use recent API versions
@@ -23,7 +23,7 @@ The rule includes a configuration property named `maxAllowedAgeInDays`, with a d
2323

2424
## Solution
2525

26-
Use the most recent API version or one that is no older than 730 days.
26+
Use the most recent API version or one that isn't older than 730 days.
2727

2828
Use **Quick Fix** to use the latest API version:
2929

articles/azure-resource-manager/bicep/linter-rule-use-recent-module-versions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Linter rule - use recent module versions
33
description: Linter rule - use recent module versions
44
ms.topic: reference
55
ms.custom: devx-track-bicep
6-
ms.date: 10/03/2024
6+
ms.date: 10/09/2024
77
---
88

99
# Linter rule - use recent module versions
42.5 KB
Loading

articles/azure-resource-manager/bicep/visual-studio-code.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Create Bicep files by using Visual Studio Code
3-
description: Describes how to create Bicep files by using Visual Studio Code
3+
description: Learn how to use Visual Studio Code to create Bicep files.
44
ms.topic: how-to
55
ms.custom: devx-track-bicep
6-
ms.date: 07/18/2024
6+
ms.date: 10/09/2024
77
---
88

99
# Create Bicep files by using Visual Studio Code
@@ -18,7 +18,7 @@ To set up your environment for Bicep development, see [Install Bicep tools](inst
1818

1919
Visual Studio Code comes with several Bicep commands.
2020

21-
Open or create a Bicep file in VS Code, select the **View** menu and then select **Command Palette**. You can also use **F1** or the key combination <kbd>Ctrl+Shift+P</kbd> to bring up the command palette. Type **Bicep** to list the Bicep commands.
21+
Open or create a Bicep file in VS Code, select the **View** menu, and then select **Command Palette**. You can also use **F1** or the key combination <kbd>Ctrl+Shift+P</kbd> to bring up the command palette. Type **Bicep** to list the Bicep commands.
2222

2323
:::image type="content" source="./media/visual-studio-code/visual-studio-code-bicep-commands.png" alt-text="Screenshot of Visual Studio Code Bicep commands in the command palette.":::
2424

@@ -41,7 +41,7 @@ These commands are also shown in the context menu when you right-click a Bicep f
4141

4242
When you right-click a JSON file:
4343

44-
:::image type="content" source="./media/visual-studio-code/visual-studio-code-bicep-context-menu-json.png" alt-text="Screenshot of Visual Studio Code Bicep commands in the context menu for ARM JSON templates.":::
44+
:::image type="content" source="./media/visual-studio-code/visual-studio-code-bicep-context-menu-json.png" alt-text="Screenshot of Visual Studio Code Bicep commands in the context menu for ARM JSON templates":::
4545

4646
### Build ARM template
4747

@@ -119,15 +119,15 @@ You can also open the visualizer side-by-side with the Bicep file.
119119

120120
When your Bicep file uses modules that are published to a registry, the restore command gets copies of all the required modules from the registry. It stores those copies in a local cache. For more information, see [restore](./bicep-cli.md#restore).
121121

122-
## View type document
122+
## View documentation
123123

124-
From Visual Studio Code, you can open the template reference for the resource type you're working on. To do so, hover your cursor over the resource symbolic name, and then select **View type document**.
124+
From Visual Studio Code, you can open the template reference for the resource type you're working on. To do so, hover your cursor over the resource symbolic name, and then select **View Documentation**.
125125

126126
:::image type="content" source="./media/visual-studio-code/visual-studio-code-bicep-view-type-document.png" alt-text="Screenshot of Visual Studio Code Bicep view type document.":::
127127

128128
## Go to definition
129129

130-
When defining a [module](./modules.md), regardless of the types of the referenced file - whether it's a local file, module registry file, template spec, you can open the referenced file by selecting or highlighting the module path and then press **[F12]**. If the referenced file is an [Azure Verified Modules(AVM)](https://aka.ms/avm), you can toggle between compiled JSON or Bicep file. To be able to open the Bicep file of a private registry module, ensure that the module is published to the registry with the `WithSource` switch enabled. For more information, see [Publish files to registry](./private-module-registry.md#publish-files-to-registry). The Visual Studio Code Bicep extension version 0.27.1 or newer is required for opening Bicep file from private module registry.
130+
When defining a [module](./modules.md), regardless of the types of the referenced file - whether it's a local file, module registry file, or a template spec, you can open the referenced file by selecting or highlighting the module path and then press **[F12]**. If the referenced file is an [Azure Verified Modules(AVM)](https://aka.ms/avm), you can toggle between compiled JSON or Bicep file. To be able to open the Bicep file of a private registry module, ensure that the module is published to the registry with the `WithSource` switch enabled. For more information, see [Publish files to registry](./private-module-registry.md#publish-files-to-registry). The Visual Studio Code Bicep extension version 0.27.1 or newer is required for opening Bicep file from private module registry.
131131

132132
## Paste as Bicep
133133

@@ -137,7 +137,7 @@ By using this feature, you can paste:
137137

138138
- Full ARM JSON templates.
139139
- Single resource or multiple resources.
140-
- JSON values, such as objects, arrays, and strings. A string with double-quotes is converted to single-quotes.
140+
- JSON values, such as objects, arrays, and strings. A string with double quotation marks converts to one with single quotation marks.
141141

142142
For example, you can start with the following Bicep file:
143143

@@ -197,7 +197,7 @@ You can undo the decompilation by using <kbd>Ctrl+Z</kbd>. The original JSON app
197197

198198
## Troubleshoot
199199

200-
The `Problems` pane summarizes the errors and warning in your Bicep file.
200+
The `Problems` pane summarizes the errors and warning in your Bicep file:
201201

202202
:::image type="content" source="./media/visual-studio-code/visual-studio-code-bicep-problems-pane.png" alt-text="Screenshot of Visual Studio Code Bicep problems pane.":::
203203

0 commit comments

Comments
 (0)