Skip to content

Commit 6ee8d67

Browse files
authored
Remove testing pieces in quickstart (#205)
1 parent 12f0f3c commit 6ee8d67

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

quickstart-templates/application-serviceprincipal-create-client-resource/bicepconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
},
55
// specify an alias for the version of the v1.0 dynamic types package you want to use
66
"extensions": {
7-
"microsoftGraphV1": "br:mcr.microsoft.com/bicep/extensions/microsoftgraph/v1.0:0.1.8-preview",
8-
"graphbetatest": "br:mybiceptest.azurecr.io/bicep/extensions/microsoftgraph/beta:0.1.9-mypreview2"
7+
"microsoftGraphV1": "br:mcr.microsoft.com/bicep/extensions/microsoftgraph/v1.0:0.1.8-preview"
98
}
109
}

quickstart-templates/application-serviceprincipal-create-client-resource/main.bicep

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
extension graphbetatest
1+
extension microsoftGraphV1
22

33
@description('Id of the application role to add to the resource app')
44
param appRoleId string
@@ -7,9 +7,6 @@ param appRoleId string
77
@description('Value of the key credential')
88
param certKey string
99

10-
resource user 'Microsoft.Graph/users@beta' existing = {
11-
userPrincipalName: 'sdf'
12-
}
1310
resource resourceApp 'Microsoft.Graph/applications@v1.0' = {
1411
uniqueName: 'ExampleResourceApp'
1512
displayName: 'Example Resource Application'

0 commit comments

Comments
 (0)