Skip to content

Instantly share code, notes, and snippets.

@GuruCharan94
Last active September 22, 2018 03:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GuruCharan94/faba9ce4c64885d6697c2c0fd8bd91bc to your computer and use it in GitHub Desktop.
Save GuruCharan94/faba9ce4c64885d6697c2c0fd8bd91bc to your computer and use it in GitHub Desktop.
Getting Started with Secure Devops Kit for Azure
Install-Module AzSK -Scope CurrentUser -AllowClobber -Force
Param
(
[Parameter(Mandatory=$true)]
[string]$SubscriptionName,
[string]$Location = "East US"
)
$RgName = "AzSK-GettingStarted-RG"
#The script requires Powershell 5 or higher.
Import-Module AzSK
# Log in to Azure
Login-AzureRMAccount
Set-AzureRmContext -Subscription $SubscriptionName
#Create a resource group if it does not exist
Get-AzureRmResourceGroup -Name $RgName -ErrorAction SilentlyContinue -ErrorVariable rgError
if ($rgError)
{
New-AzureRmResourceGroup -Name $RgName -Location $Location
}
#Create a Log analytics Workspace if not exists
$LogAnalyticsWorkspace = Get-AzureRmOperationalInsightsWorkspace -ResourceGroupName $RgName | Select -First 1
if ($LogAnalyticsWorkspace.Count -eq 0)
{
$WorkspaceName = "AZSK-log-analytics-" + (Get-Random -Maximum 99999)
$LogAnalyticsWorkspace = New-AzureRmOperationalInsightsWorkspace `
-ResourceGroupName $RgName `
-Name $WorkspaceName `
-Location $Location `
-Sku "standalone"
}
#Get Subscription Id
$SubscriptionId = Get-AzureRMSubscription `
| Where-Object Name -eq $SubscriptionName `
| Select-Object Id
# Setup AzSK View in Log Anlaytics
Install-AzSKOMSSolution -OMSSubscriptionId $SubscriptionId.Id `
-OMSResourceGroup $RgName `
-OMSWorkspaceId $LogAnalyticsWorkspace.CustomerId `
-DoNotOpenOutputFolder
$LogAnalyticsKeys = Get-AzureRmOperationalInsightsWorkspaceSharedKeys -ResourceGroupName $RgName -Name $LogAnalyticsWorkspace.Name
Set-AzSKOMSSettings -OMSWorkspaceID $LogAnalyticsWorkspace.CustomerId -OMSSharedKey $LogAnalyticsKeys.PrimarySharedKey
Param
(
[Parameter(Mandatory=$true)]
[string]$SubscriptionName
)
Import-Module AzSK
Login-AzureRMAccount
# Run this in a new Powershell Window after running previous script
$SubscriptionId = Get-AzureRMSubscription `
| Where-Object Name -eq $SubscriptionName `
| Select-Object Id
Set-AzSKUserPreference -OutputFolderPath (Get-Location).Path
Get-AzSKSubscriptionSecurityStatus -SubscriptionId $SubscriptionId.Id -GeneratePDF Portrait -GenerateFixScript
Get-AzSKAzureServicesSecurityStatus -SubscriptionId $SubscriptionId.Id -GeneratePDF Portrait -GenerateFixScript
Set-AzSKUserPreference -ResetOutputFolderPath
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment