Skip to content

Commit

Permalink
add user
Browse files Browse the repository at this point in the history
  • Loading branch information
twsouthwick committed Jun 4, 2024
1 parent 6fc5c24 commit 9992266
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ param ownerName string
@description('The ID of the running user or service principal. This will be set as the owner when needed.')
param principalId string = ''

@description('The name of the running user or service principal. This will be set as the owner when needed.')
param principalName string = ''

@allowed([ 'ServicePrincipal', 'User' ])
@description('The type of the principal specified in \'principalId\'')
param principalType string = 'ServicePrincipal'
Expand Down Expand Up @@ -133,6 +136,7 @@ var defaultDeploymentSettings = {
isPrimaryLocation: true
location: location
name: environmentName
principalName: principalName
principalId: principalId
principalType: principalType
resourceToken: primaryResourceToken
Expand Down

0 comments on commit 9992266

Please sign in to comment.