Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Updated keyvault access policy #3109

Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
cdcd3b7
re-add sync-fork.yml
AdamL-Microsoft May 7, 2023
d78d47b
Merge pull request #316 from microsoft/main
AdamL-Microsoft May 7, 2023
e97517e
Merge pull request #318 from microsoft/main
AdamL-Microsoft May 8, 2023
fa01963
Merge pull request #319 from microsoft/main
AdamL-Microsoft May 9, 2023
7e28393
Merge pull request #321 from microsoft/main
AdamL-Microsoft May 10, 2023
47a1de9
Merge pull request #322 from microsoft/main
AdamL-Microsoft May 10, 2023
d7487d5
Merge pull request #324 from microsoft/main
AdamL-Microsoft May 11, 2023
ba5c160
Merge pull request #325 from microsoft/main
AdamL-Microsoft May 12, 2023
2d8cef5
Merge pull request #326 from microsoft/main
AdamL-Microsoft May 15, 2023
89cb764
Merge pull request #328 from microsoft/main
AdamL-Microsoft May 16, 2023
253f759
Merge pull request #329 from microsoft/main
AdamL-Microsoft May 16, 2023
1396596
updated keyvault access policy for function app compatibility
AdamL-Microsoft May 16, 2023
c50fb0a
remove comma
AdamL-Microsoft May 16, 2023
9feb207
remove sync-fork.yml
AdamL-Microsoft May 16, 2023
9e54471
Merge branch 'main' into updated-keyvault-access-policy
AdamL-Microsoft May 19, 2023
fc67d38
Merge branch 'main' into updated-keyvault-access-policy
AdamL-Microsoft May 24, 2023
885cc23
Merge branch 'main' into updated-keyvault-access-policy
AdamL-Microsoft Jun 20, 2023
50b5de2
Merge branch 'main' into updated-keyvault-access-policy
AdamL-Microsoft Jun 26, 2023
ba8684a
Merge branch 'main' into updated-keyvault-access-policy
AdamL-Microsoft Jun 27, 2023
96da7b2
Merge branch 'main' into updated-keyvault-access-policy
AdamL-Microsoft Jun 27, 2023
fd650d7
Merge branch 'main' into updated-keyvault-access-policy
AdamL-Microsoft Jun 27, 2023
a72eb2a
Merge branch 'main' into updated-keyvault-access-policy
AdamL-Microsoft Jun 28, 2023
9bc2d4a
Merge branch 'main' into updated-keyvault-access-policy
AdamL-Microsoft Jun 28, 2023
38db8c8
Merge branch 'main' into updated-keyvault-access-policy
AdamL-Microsoft Jun 28, 2023
29c3773
Merge branch 'main' into updated-keyvault-access-policy
AdamL-Microsoft Jun 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/deployment/azuredeploy.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ resource keyVault 'Microsoft.KeyVault/vaults@2021-10-01' = {
location: location
properties: {
enabledForDiskEncryption: false
enabledForDeployment: true
mgreisen marked this conversation as resolved.
Show resolved Hide resolved
enabledForTemplateDeployment: true
sku: {
family: 'A'
Expand Down Expand Up @@ -125,14 +126,16 @@ resource keyVault 'Microsoft.KeyVault/vaults@2021-10-01' = {
}
}
{
objectId: 'abfa0a7c-a6b6-4736-8310-5855508787cd'
objectId: 'b453993d-81d4-41a7-be3a-549bc2435ffa'
tenantId: tenantId
permissions: {
secrets: [
'get'
'list'
]
certificates: [
'get'
'list'
]
}
}
Expand Down
Loading