Skip to content

Commit 2073abd

Browse files
michaeltlombardimgreenegitSteveL-MSFT
authored
Apply suggestions from review
Co-authored-by: Michael Greene <[email protected]> Co-authored-by: Steve Lee <[email protected]>
1 parent 0430004 commit 2073abd

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

docs/concepts/configuration-documents/overview.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ DSC can process configuration documents to:
2424
- Export a new configuration document with every instance of a set of resources with the
2525
`dsc config export` command.
2626

27-
Configuration documents are YAML or JSON files that contain a single object. The object's
28-
properties define how DSC processes the document. The top-level properties for a document are:
27+
Configuration documents contain a single object formatted as YAML, JSON, or Bicep (which compiles to JSON). The object's
28+
properties define how DSC processes the document. It is intentional that DSC configuration documents
29+
should be familiar to authors accustomed to working with
30+
[Azure Resource Manager deployment templates](./azure/azure-resource-manager/templates/).
31+
The top-level properties for a document are:
2932

3033
- `$schema` (required) - Defines the URI for the JSON Schema the document adheres to. DSC
3134
uses this URI to know how to validate and interpret the document.
@@ -152,7 +155,7 @@ When you use this command, DSC also:
152155
- Provides metadata about the operation as a whole and for each resource instance.
153156

154157
```sh
155-
dsc config test --file /example.config.dsc.yaml
158+
dsc config test --file ./example.config.dsc.yaml
156159
```
157160

158161
```yaml

docs/concepts/enhanced-authoring.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ specific workspace.
164164
```json
165165
"json.schemas": [
166166
{
167-
"fileMatch": ["**/*.dsc.resource.json", ],
167+
"fileMatch": ["**/*.dsc.resource.json"],
168168
"url": "https://aka.ms/dsc/schemas/v3/bundled/resource/manifest.vscode.json"
169169
}
170170
]

0 commit comments

Comments
 (0)