diff --git a/docs/getting-started.md b/docs/getting-started.md index b26c3e6..72b155a 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -23,7 +23,7 @@ To get the benefit of intellisense and auto-complete for the Microsoft Graph Bic When you create a Bicep template, add the following statement, to make Microsoft Graph Bicep types readily accessible to the template. ```bicep -provider 'microsoftGraph@1.0.0' +provider microsoftGraph ``` Now, when creating a Bicep resource, the available Microsoft.Graph resource types will show up. diff --git a/docs/use-existing-resources.md b/docs/use-existing-resources.md index 9acd381..f4d91c2 100644 --- a/docs/use-existing-resources.md +++ b/docs/use-existing-resources.md @@ -54,7 +54,7 @@ Content-type: application/json Once the group resource is "back-filled", it can be referenced by its unique name, using the `existing` keyword in a Bicep template: ```Bicep -import 'microsoftGraph@1.0.0' +provider microsoftGraph @description('Group to use') param groupName string = 'TestGroup-2023-10-10'