Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SQL MI integration in the report #84

Merged
merged 1 commit into from
Nov 7, 2022
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
117 changes: 117 additions & 0 deletions Modules/Data/SQLMI.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
<#
.Synopsis
Inventory for Azure SQL Server

.DESCRIPTION
This script consolidates information for all microsoft.sql/servers resource provider in $Resources variable.
Excel Sheet Name: SQL MI

.Link
https://github.com/microsoft/ARI/Modules/Data/SQLSERVER.ps1

.COMPONENT
This powershell Module is part of Azure Resource Inventory (ARI)

.NOTES
Version: 2.3.1
First Release Date: 19th November, 2020
Authors: Claudio Merola and Renato Gregio

#>

<######## Default Parameters. Don't modify this ########>

param($SCPath, $Sub, $Intag, $Resources, $Task , $File, $SmaResources, $TableStyle, $Unsupported)

if ($Task -eq 'Processing') {

$SQLSERVERMI = $Resources | Where-Object { $_.TYPE -eq 'microsoft.sql/managedInstances' }

if($SQLSERVERMI)
{
$tmp = @()

foreach ($1 in $SQLSERVERMI) {
$ResUCount = 1
$sub1 = $SUB | Where-Object { $_.id -eq $1.subscriptionId }
$data = $1.PROPERTIES

$Tags = if(!!($1.tags.psobject.properties)){$1.tags.psobject.properties}else{'0'}

$pvteps = if(!($1.privateEndpointConnections)) {[pscustomobject]@{id = 'NONE'}} else {$1.privateEndpointConnections | Select-Object @{Name="id";Expression={$_.id.split("/")[8]}}}

foreach ($pvtep in $pvteps) {
foreach ($Tag in $Tags) {
$obj = @{
'ID' = $1.id;
'Subscription' = $sub1.Name;
'Resource Group' = $1.RESOURCEGROUP;
'Name' = $1.NAME;
'Location' = $1.LOCATION;
'SkuName' = $1.sku.Name;
'SkuCapacity' = $1.sku.capacity;
'SkuTier' = $1.sku.tier;
'Admin Login' = $data.adminitrators.login;
'AzureADOnlyAuthentication' = $data.adminitrators.azureADOnlyAuthentication;
'Private Endpoint' = $pvtep.id;
'FQDN' = $data.fullyQualifiedDomainName;
'Public Network Access' = $data.publicDataEndpointEnabled;
'licenseType' = $data.licenseType;
'managedInstanceCreateMode' = $data.managedInstanceCreateMode;
'Resource U' = $ResUCount;
'Zone Redundant' = $data.zoneRedundant;
'Tag Name' = [string]$Tag.Name;
'Tag Value' = [string]$Tag.Value
}
$tmp += $obj
if ($ResUCount -eq 1) { $ResUCount = 0 }
}
}
}
$tmp
}
}
else {
if ($SmaResources.SQLMI) {

$TableName = ('SQLMITable_'+($SmaResources.SQLMI.id | Select-Object -Unique).count)
$Style = New-ExcelStyle -HorizontalAlignment Center -AutoSize -NumberFormat 0

$condtxt = @()
$condtxt += New-ConditionalText FALSE -Range J:J
$condtxt += New-ConditionalText FALSO -Range J:J
$condtxt += New-ConditionalText FAUX -Range J:J
$condtxt += New-ConditionalText NONE -Range J:J
$condtxt += New-ConditionalText Enabled -Range L:L
$condtxt += New-ConditionalText VRAI -Range L:L

$Exc = New-Object System.Collections.Generic.List[System.Object]
$Exc.Add('Subscription')
$Exc.Add('Resource Group')
$Exc.Add('Name')
$Exc.Add('Location')
$Exc.Add('SkuName')
$Exc.Add('SkuCapacity')
$Exc.Add('SkuTier')
$Exc.Add('Admin Login')
$Exc.Add('ActiveDirectoryOnlyAuthentication')
$Exc.Add('Private Endpoint')
$Exc.Add('FQDN')
$Exc.Add('Public Network Access')
$Exc.Add('licenseType')
$Exc.Add('managedInstanceCreateMode')
$Exc.Add('Zone Redundant')
if($InTag)
{
$Exc.Add('Tag Name')
$Exc.Add('Tag Value')
}

$ExcelVar = $SmaResources.SQLMI

$ExcelVar |
ForEach-Object { [PSCustomObject]$_ } | Select-Object -Unique $Exc |
Export-Excel -Path $File -WorksheetName 'SQL MI' -AutoSize -MaxAutoSizeRows 100 -TableName $TableName -TableStyle $tableStyle -ConditionalText $condtxt -Style $Style

}
}
98 changes: 98 additions & 0 deletions Modules/Data/SQLMIDB.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<#
.Synopsis
Inventory for Azure SQL Server

.DESCRIPTION
This script consolidates information for all microsoft.sql/servers resource provider in $Resources variable.
Excel Sheet Name: SQL MI DBs

.Link
https://github.com/microsoft/ARI/Modules/Data/SQLSERVER.ps1

.COMPONENT
This powershell Module is part of Azure Resource Inventory (ARI)

.NOTES
Version: 2.3.1
First Release Date: 19th November, 2020
Authors: Claudio Merola and Renato Gregio

#>

<######## Default Parameters. Don't modify this ########>

param($SCPath, $Sub, $Intag, $Resources, $Task , $File, $SmaResources, $TableStyle, $Unsupported)

if ($Task -eq 'Processing') {

$SQLSERVERMIDB = $Resources | Where-Object { $_.TYPE -eq 'microsoft.sql/managedinstances/databases' }

if($SQLSERVERMIDB)
{
$tmp = @()

foreach ($1 in $SQLSERVERMIDB) {
$ResUCount = 1
$sub1 = $SUB | Where-Object { $_.id -eq $1.subscriptionId }
$data = $1.PROPERTIES

$Tags = if(!!($1.tags.psobject.properties)){$1.tags.psobject.properties}else{'0'}

$pvteps = if(!($data.privateEndpointConnections)) {[pscustomobject]@{id = 'NONE'}} else {$data.privateEndpointConnections | Select-Object @{Name="id";Expression={$_.id.split("/")[10]}}}

foreach ($pvtep in $pvteps) {
foreach ($Tag in $Tags) {
$obj = @{
'ID' = $1.id;
'Subscription' = $sub1.Name;
'MI parent' = $1.id.split("/")[8];
'Name' = $1.NAME;
'Collation' = $data.collation;
'CreationDate' = $data.creationDate;
'DefaultSecondaryLocation' = $data.defaultSecondaryLocation;
'Status' = $data.status;
'Tag Name' = [string]$Tag.Name;
'Tag Value' = [string]$Tag.Value
}
$tmp += $obj
if ($ResUCount -eq 1) { $ResUCount = 0 }
}
}
}
$tmp
}
}
else {
if ($SmaResources.SQLMIDB) {

$TableName = ('SQLMIDBTable_'+($SmaResources.SQLMIDB.id | Select-Object -Unique).count)
$Style = New-ExcelStyle -HorizontalAlignment Center -AutoSize -NumberFormat 0

$condtxt = @()
$condtxt += New-ConditionalText FALSE -Range J:J
$condtxt += New-ConditionalText FALSO -Range J:J
$condtxt += New-ConditionalText FAUX -Range J:J
$condtxt += New-ConditionalText offline -Range G:G

$Exc = New-Object System.Collections.Generic.List[System.Object]
$Exc.Add('Subscription')
$Exc.Add('MI parent')
$Exc.Add('Name')
$Exc.Add('Collation')
$Exc.Add('CreationDate')
$Exc.Add('DefaultSecondaryLocation')
$Exc.Add('Status')
if($InTag)
{
$Exc.Add('Tag Name')
$Exc.Add('Tag Value')
}

$ExcelVar = $SmaResources.SQLMIDB

$ExcelVar |
ForEach-Object { [PSCustomObject]$_ } | Select-Object -Unique $Exc |
Export-Excel -Path $File -WorksheetName 'SQL MI DBs' -AutoSize -MaxAutoSizeRows 100 -TableName $TableName -TableStyle $tableStyle -ConditionalText $condtxt -Style $Style

}
}