From e2c08b062ce855e8776fd81e2e1860ad56023d42 Mon Sep 17 00:00:00 2001 From: Patrick Hallisey Date: Thu, 12 Sep 2024 15:51:08 -0700 Subject: [PATCH] Add missing useVnet parameter (#8679) * Add missing useVnet parameter * Add classification tag --- .../infrastructure/bicep/logsResourceGroup.bicep | 3 +++ .../infrastructure/bicep/parameters.production.json | 3 +++ .../infrastructure/bicep/parameters.staging.json | 3 +++ 3 files changed, 9 insertions(+) diff --git a/tools/pipeline-witness/infrastructure/bicep/logsResourceGroup.bicep b/tools/pipeline-witness/infrastructure/bicep/logsResourceGroup.bicep index b4f4cd3462c..939d2c5c5e0 100644 --- a/tools/pipeline-witness/infrastructure/bicep/logsResourceGroup.bicep +++ b/tools/pipeline-witness/infrastructure/bicep/logsResourceGroup.bicep @@ -136,6 +136,9 @@ resource kustoCluster 'Microsoft.Kusto/Clusters@2022-02-01' = { identity: { type: 'SystemAssigned' } + tags: { + 'NRMS.KustoPlatform.Classification.1P': 'Corp' + } properties: { trustedExternalTenants: [] optimizedAutoscale: { diff --git a/tools/pipeline-witness/infrastructure/bicep/parameters.production.json b/tools/pipeline-witness/infrastructure/bicep/parameters.production.json index f6c5c3f1a10..5aa214f72c6 100644 --- a/tools/pipeline-witness/infrastructure/bicep/parameters.production.json +++ b/tools/pipeline-witness/infrastructure/bicep/parameters.production.json @@ -55,6 +55,9 @@ }, "subnetPrefix": { "value": "10.9.0.0/24" + }, + "useVnet": { + "value": true } } } \ No newline at end of file diff --git a/tools/pipeline-witness/infrastructure/bicep/parameters.staging.json b/tools/pipeline-witness/infrastructure/bicep/parameters.staging.json index 907851c938c..d9007b85d74 100644 --- a/tools/pipeline-witness/infrastructure/bicep/parameters.staging.json +++ b/tools/pipeline-witness/infrastructure/bicep/parameters.staging.json @@ -55,6 +55,9 @@ }, "subnetPrefix": { "value": "10.8.0.0/24" + }, + "useVnet": { + "value": true } } } \ No newline at end of file