-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInvoke-RunbookUsingAlerts.ps1
85 lines (75 loc) · 3.28 KB
/
Invoke-RunbookUsingAlerts.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#################################################################
workflow Invoke-RunbookUsingAlerts
{
param (
[object]$WebhookData
)
# If runbook was called from Webhook, WebhookData will not be null.
if ($WebhookData -ne $null) {
# Collect properties of WebhookData.
$WebhookName = $WebhookData.WebhookName
$WebhookBody = $WebhookData.RequestBody
$WebhookHeaders = $WebhookData.RequestHeader
# Outputs information on the webhook name that called This
Write-Output "This runbook was started from webhook $WebhookName."
# Obtain the WebhookBody containing the AlertContext
$WebhookBody = (ConvertFrom-Json -InputObject $WebhookBody)
Write-Output "`nWEBHOOK BODY"
Write-Output "============="
Write-Output $WebhookBody
# Obtain the AlertContext
$AlertContext = [object]$WebhookBody.context
# Some selected AlertContext information
Write-Output "`nALERT CONTEXT DATA"
Write-Output "==================="
Write-Output $AlertContext.name
Write-Output $AlertContext.subscriptionId
Write-Output $AlertContext.resourceGroupName
Write-Output $AlertContext.resourceName
Write-Output $AlertContext.resourceType
Write-Output $AlertContext.resourceId
Write-Output $AlertContext.timestamp
#====================START OF CONNECTION SETUP======================
$connectionName = "AzureRunAsConnection"
$SubId = Get-AutomationVariable -Name 'AzureSubscriptionId'
try
{
# Get the connection "AzureRunAsConnection "
$servicePrincipalConnection=Get-AutomationConnection -Name $connectionName
"Logging in to Azure..."
Add-AzureRmAccount `
-ServicePrincipal `
-TenantId $servicePrincipalConnection.TenantId `
-ApplicationId $servicePrincipalConnection.ApplicationId `
-CertificateThumbprint $servicePrincipalConnection.CertificateThumbprint
"Setting context to a specific subscription"
Set-AzureRmContext -SubscriptionId $SubId
}
catch {
if (!$servicePrincipalConnection)
{
$ErrorMessage = "Connection $connectionName not found."
throw $ErrorMessage
} else{
Write-Error -Message $_.Exception
throw $_.Exception
}
}
#====================END OF CONNECTION SETUP=======================
#Check the status property of the VM
Write-Output "Status of VM before taking action"
$armVM = Get-AzureRMVM -Status -ResourceGroupName $AlertContext.resourceGroupName -Name $AlertContext.resourceName
$armVM.PowerState
Write-Output "Restarting VM"
# Restart the VM by passing VM name and Service name which are same in this case
$armVM | Restart-azureRMVM
Write-Output "Status of VM after alert is active and takes action"
$armVM = Get-AzureRMVM -Status -ResourceGroupName $AlertContext.resourceGroupName -Name $AlertContext.resourceName
$armVM.PowerState
}
else
{
Write-Error "This runbook is meant to only be started from a webhook."
}
}
########################################################################