Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
"EncryptionOperation": "EnableEncryption",
"KeyVaultURL": "https://adp-sxx-az-kv-x-001.vault.azure.net/",
"KeyVaultResourceId": "/subscriptions/<<subscriptionId>>/resourceGroups/validation-rg/providers/Microsoft.KeyVault/vaults/adp-sxx-az-kv-x-001",
"KeyEncryptionKeyURL": "https://adp-sxx-az-kv-x-001.vault.azure.net/keys/keyEncryptionKey/1dcaf3e93b44433bba0232e9eec54cc7",
"KeyEncryptionKeyURL": "https://adp-sxx-az-kv-x-001.vault.azure.net/keys/keyEncryptionKey/1dcaf3e93b44433bba0232e9eec54cc7", // ID must be updated for new keys
"KekVaultResourceId": "/subscriptions/<<subscriptionId>>/resourceGroups/validation-rg/providers/Microsoft.KeyVault/vaults/adp-sxx-az-kv-x-001",
"KeyEncryptionAlgorithm": "RSA-OAEP",
"VolumeType": "All",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
"EncryptionOperation": "EnableEncryption",
"KeyVaultURL": "https://adp-sxx-az-kv-x-001.vault.azure.net/",
"KeyVaultResourceId": "/subscriptions/<<subscriptionId>>/resourceGroups/validation-rg/providers/Microsoft.KeyVault/vaults/adp-sxx-az-kv-x-001",
"KeyEncryptionKeyURL": "https://adp-sxx-az-kv-x-001.vault.azure.net/keys/keyEncryptionKey/1dcaf3e93b44433bba0232e9eec54cc7",
"KeyEncryptionKeyURL": "https://adp-sxx-az-kv-x-001.vault.azure.net/keys/keyEncryptionKey/1dcaf3e93b44433bba0232e9eec54cc7", // ID must be updated for new keys
"KekVaultResourceId": "/subscriptions/<<subscriptionId>>/resourceGroups/validation-rg/providers/Microsoft.KeyVault/vaults/adp-sxx-az-kv-x-001",
"KeyEncryptionAlgorithm": "RSA-OAEP",
"VolumeType": "All",
Expand Down
3 changes: 2 additions & 1 deletion docs/wiki/TestingDesign.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ Since also dependency resources are in turn subject to dependencies with each ot

**Second level resources**: This group of resources has a dependency only on the resource group which will host them. Resources in this group can be deployed in parallel.

1. User assigned identity: This resource is leveraged as a test identity by all resources supporting RBAC.
1. User assigned identity: This resource is leveraged by all dependency resources
> **Note**: The object ID of the [user assigned identity] must be set in several dependency parameter files. However, when you first run the pipeline, this object ID will be unknown. It is hence recommended to either manually create the MSI beforehand - or - run the pipeline without the ID once (which will cause the pipeline to fail during the ID's usage, but **after** the MSI was deployed), then update the value in the parameter files and finally re-run the pipeline.
1. Policy assignment: This resource is leveraged by the [policy exemption] resource.
1. Log analytics workspace: This resource is leveraged by all resources supporting diagnostic settings on LAW.
1. Storage account: This resource is leveraged by all resources supporting diagnostic settings on a storage account.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"value": "Contributor"
},
"principalId": {
"value": "cf33fea8-b30f-424f-ab73-c48d99e0b222"
"value": "cf33fea8-b30f-424f-ab73-c48d99e0b222" // The object ID of the deployed MSI
},
"subscriptionId": {
"value": "<<subscriptionId>>"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
{
"roleDefinitionIdOrName": "Reader",
"principalIds": [
"cf33fea8-b30f-424f-ab73-c48d99e0b222"
"cf33fea8-b30f-424f-ab73-c48d99e0b222" // The object ID of the deployed MSI
]
}
]
Expand Down