Skip to content

Commit 4cbacb8

Browse files
Adding develop branch for testing purpose
1 parent c6b17ec commit 4cbacb8

File tree

5 files changed

+47
-10
lines changed

5 files changed

+47
-10
lines changed

arm-template-deployment/deployRGParent.json

+15-1
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,21 @@
3030
"description": "Enable Activity logs to be sent to the event hub that will get created in this deployment"
3131
},
3232
"defaultValue": "Yes"
33+
},
34+
"sourceCodeBranch": {
35+
"type": "String",
36+
"allowedValues": [
37+
"master",
38+
"develop"
39+
],
40+
"metadata": {
41+
"description": "Github branch from which the code is to be deployed"
42+
},
43+
"defaultValue": "master"
3344
}
3445
},
3546
"variables": {
36-
"templateBaseUri": "https://raw.githubusercontent.com/logicmonitor/lm-logs-azure/master/arm-template-deployment/",
47+
"templateBaseUri": "[concat('https://raw.githubusercontent.com/logicmonitor/lm-logs-azure/',parameters('sourceCodeBranch'),'/arm-template-deployment/')]",
3748
"deploymentResourceGroupName": "[concat('lm-logs','-',parameters('LM_Company_name'), '-', replace(parameters('resource_group_region'),' ',''),'-group')]",
3849
"eventhubNamespace": "[concat('lm-logs','-',parameters('LM_Company_name'), '-', replace(parameters('resource_group_region'),' ',''))]",
3950
"eventhubLogsName": "log-hub",
@@ -75,6 +86,9 @@
7586
},
7687
"Azure_Client_Id": {
7788
"value": "[parameters('Azure_Client_Id')]"
89+
},
90+
"sourceCodeBranch": {
91+
"value": "[parameters('sourceCodeBranch')]"
7892
}
7993
}
8094
},

arm-template-deployment/deployResourcesInRG.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
},
1717
"azure_region": {
1818
"type": "string"
19+
},
20+
"sourceCodeBranch": {
21+
"type": "string"
1922
}
2023
},
2124
"variables": {
@@ -127,7 +130,7 @@
127130
},
128131
{
129132
"name": "WEBSITE_RUN_FROM_PACKAGE",
130-
"value": "https://github.com/logicmonitor/lm-logs-azure/raw/master/package/lm-logs-azure.zip"
133+
"value": "[concat('https://github.com/logicmonitor/lm-logs-azure/raw/',parameters('sourceCodeBranch'),'/package/lm-logs-azure.zip')]"
131134
},
132135
{
133136
"name": "AzureWebJobsStorage",

arm-template-deployment/deploymentChildScript.json

+7-4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
},
2121
"utcNow": {
2222
"type": "String"
23+
},
24+
"sourceCodeBranch": {
25+
"type": "string"
2326
}
2427
},
2528
"resources": [
@@ -40,11 +43,11 @@
4043
"forceUpdateTag": "[parameters('utcNow')]",
4144
"azPowerShellVersion": "5.6",
4245
"timeout": "PT1H",
43-
"arguments": "[format(' -resourceGroup {0} -lmCompanyName {1} -subscriptionId {2} -location {3}', parameters('resourceGroup'),parameters('LM_Company_name'), parameters('subscriptionId'), parameters('location'))]",
44-
"primaryScriptURI": "https://raw.githubusercontent.com/logicmonitor/lm-logs-azure/master/diagnostic-settings-scripts/policyCreationAndRemediationTemplate.ps1",
46+
"arguments": "[format(' -resourceGroup {0} -lmCompanyName {1} -subscriptionId {2} -location {3} -sourceCodeBranch {4}', parameters('resourceGroup'),parameters('LM_Company_name'), parameters('subscriptionId'), parameters('location'), parameters('sourceCodeBranch'))]",
47+
"primaryScriptURI": "[concat('https://raw.githubusercontent.com/logicmonitor/lm-logs-azure/',parameters('sourceCodeBranch'),'/diagnostic-settings-scripts/policyCreationAndRemediationTemplate.ps1')]",
4548
"supportingScriptUris": [
46-
"https://raw.githubusercontent.com/logicmonitor/lm-logs-azure/master/diagnostic-settings-scripts/policyAssignment.ps1",
47-
"https://raw.githubusercontent.com/logicmonitor/lm-logs-azure/master/diagnostic-settings-scripts/policyInitiativeRemediation.ps1"
49+
"[concat('https://raw.githubusercontent.com/logicmonitor/lm-logs-azure/',parameters('sourceCodeBranch'),'/diagnostic-settings-scripts/policyAssignment.ps1')]",
50+
"[concat('https://raw.githubusercontent.com/logicmonitor/lm-logs-azure/',parameters('sourceCodeBranch'),'/diagnostic-settings-scripts/policyInitiativeRemediation.ps1')]"
4851
],
4952
"cleanupPreference": "Always",
5053
"retentionInterval": "P1D"

arm-template-deployment/deploymentParentScript.json

+15-1
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,21 @@
1212
"defaultValue": "[utcNow()]",
1313
"type": "String",
1414
"metadata": "Please do not edit this setting"
15+
},
16+
"sourceCodeBranch": {
17+
"type": "String",
18+
"allowedValues": [
19+
"master",
20+
"develop"
21+
],
22+
"metadata": {
23+
"description": "branch from which the code is to be deployed"
24+
},
25+
"defaultValue": "master"
1526
}
1627
},
1728
"variables": {
18-
"templateBaseUri": "https://raw.githubusercontent.com/logicmonitor/lm-logs-azure/master/arm-template-deployment/",
29+
"templateBaseUri": "[concat('https://raw.githubusercontent.com/logicmonitor/lm-logs-azure/',parameters('sourceCodeBranch'),'/arm-template-deployment/')]",
1930
"deploymentResourceGroupName": "[concat('lm-logs-',parameters('LM_Company_name'),'-',resourceGroup().Location,'-group')]",
2031
"managedIdentityName": "[concat('msi-', variables('deploymentResourceGroupName'), '-deploy')]",
2132
"managedIdentityId": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', variables('deploymentResourceGroupName'), '/providers/Microsoft.ManagedIdentity/userAssignedIdentities/', variables('managedIdentityName'))]"
@@ -49,6 +60,9 @@
4960
},
5061
"location": {
5162
"value": "[resourceGroup().Location]"
63+
},
64+
"sourceCodeBranch": {
65+
"value": "[parameters('sourceCodeBranch')]"
5266
}
5367
}
5468
},

diagnostic-settings-scripts/policyCreationAndRemediationTemplate.ps1

+6-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ param
1010
[string]$subscriptionId,
1111

1212
[Parameter(Mandatory = $True)]
13-
[string]$location
13+
[string]$location,
14+
15+
[Parameter(Mandatory = $True)]
16+
[string]$sourceCodeBranch
1417

1518
)
1619

@@ -56,14 +59,14 @@ $targetResourceGroup = 'lm-logs-' + $lmCompanyName + '-' + $location + '-group'
5659
$eventhubNameSpace = $targetResourceGroup.replace('-group','')
5760
$eventhubName = 'log-hub'
5861
$eventhubAuthorizationId = 'RootManageSharedAccessKey'
59-
62+
$templateUri = 'https://raw.githubusercontent.com/logicmonitor/lm-logs-azure/'+$sourceCodeBranch+'/arm-template-deployment/ARMTemplateExport.json'
6063
Get-AzResourceGroup -Name $targetResourceGroup -ErrorVariable notPresent -ErrorAction SilentlyContinue
6164
if ($notPresent) {
6265
Write-Host "target resource group not present..."
6366
exit;
6467
}
6568
else{
66-
New-AzDeployment -TemplateUri "https://raw.githubusercontent.com/logicmonitor/lm-logs-azure/master/arm-template-deployment/ARMTemplateExport.json" -Location "West US" -Verbose
69+
New-AzDeployment -TemplateUri $templateUri -Location "West US" -Verbose
6770
$policyAssignments = ./policyAssignment.ps1 -resourceGroup $resourceGroup -location $location -eventhubName $eventhubName -eventhubNameSpace $eventhubNameSpace -eventhubAuthorizationId $eventhubAuthorizationId -targetResourceGroup $targetResourceGroup
6871
Write-Host "Running compliance result for $($policyAssignments.PolicyAssignmentId)" -ForegroundColor Cyan
6972
Start-AzPolicyComplianceScan -ResourceGroupName $policyAssignments.ResourceGroupName

0 commit comments

Comments
 (0)