Skip to content

Commit

Permalink
[Identity] Renames for msi to mi or managed-identity (#29119)
Browse files Browse the repository at this point in the history
some internal renames for better understanding
  • Loading branch information
KarishmaGhiya authored Apr 1, 2024
1 parent 0c23b08 commit 808963a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sdk/identity/identity/managed-identity-matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
},
"ArmTemplateParameters": "@{deployMIResources = $true}",
"TestType": "msi",
"TestType": "managed-identity",
"NodeTestVersion": "18.x",
"TestResultsFiles": "**/test-results.xml"
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/identity/identity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
"integration-test:browser": "echo skipped",
"integration-test:node": "dev-tool run test:node-ts-input -- --timeout 180000 'test/public/node/*.spec.ts' 'test/internal/node/*.spec.ts'",
"integration-test:msi": "dev-tool run test:node-ts-input -- --timeout 180000 'test/integration/**/*.spec.ts'",
"integration-test:managed-identity": "dev-tool run test:node-ts-input -- --timeout 180000 'test/integration/**/*.spec.ts'",
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
"lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]",
"lint": "eslint package.json api-extractor.json src test --ext .ts",
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion sdk/identity/test-resources.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ param principalUserType string = 'User'
@description('Whether to deploy resources for Managed Identity. When set to false, this file deploys nothing.')
param deployMIResources bool = false

module managedIdentityModule 'test-resources-msi.bicep' = if(deployMIResources) {
module managedIdentityModule 'test-resources-managed-identity.bicep' = if(deployMIResources) {
name: 'managedIdentityModule'
params: {
baseName: baseName
Expand Down

0 comments on commit 808963a

Please sign in to comment.