Modules/Scripts/Data/SQLSERVER.ps1
<# .Synopsis Inventory for Azure SQL Server .DESCRIPTION This script consolidates information for all microsoft.sql/servers resource provider in $Resources variable. Excel Sheet Name: SQLSERVER .Link https://github.com/microsoft/ARI/Modules/Data/SQLSERVER.ps1 .COMPONENT This powershell Module is part of Azure Resource Inventory (ARI) .NOTES Version: 2.2.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') { $SQLSERVER = $Resources | Where-Object { $_.TYPE -eq 'microsoft.sql/servers' } if($SQLSERVER) { $tmp = @() foreach ($1 in $SQLSERVER) { $ResUCount = 1 $sub1 = $SUB | Where-Object { $_.id -eq $1.subscriptionId } $data = $1.PROPERTIES $Tags = if(![string]::IsNullOrEmpty($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; 'Resource Group' = $1.RESOURCEGROUP; 'Name' = $1.NAME; 'Location' = $1.LOCATION; 'Kind' = $1.kind; 'Admin Login' = $data.administratorLogin; 'Private Endpoint' = $pvtep.id; 'FQDN' = $data.fullyQualifiedDomainName; 'Public Network Access' = $data.publicNetworkAccess; 'State' = $data.state; 'Version' = $data.version; 'Resource U' = $ResUCount; 'Zone Redundant' = $1.zones; 'Tag Name' = [string]$Tag.Name; 'Tag Value' = [string]$Tag.Value } $tmp += $obj if ($ResUCount -eq 1) { $ResUCount = 0 } } } } $tmp } } else { if ($SmaResources.SQLSERVER) { $TableName = ('SQLSERVERTable_'+($SmaResources.SQLSERVER.id | Select-Object -Unique).count) $Style = New-ExcelStyle -HorizontalAlignment Center -AutoSize -NumberFormat 0 $condtxt = @() $condtxt += New-ConditionalText FALSE -Range G:G $condtxt += New-ConditionalText FALSO -Range G:G $condtxt += New-ConditionalText Enabled -Range I:I $Exc = New-Object System.Collections.Generic.List[System.Object] $Exc.Add('Subscription') $Exc.Add('Resource Group') $Exc.Add('Name') $Exc.Add('Location') $Exc.Add('Kind') $Exc.Add('Admin Login') $Exc.Add('Private Endpoint') $Exc.Add('FQDN') $Exc.Add('Public Network Access') $Exc.Add('State') $Exc.Add('Version') $Exc.Add('Zone Redundant') if($InTag) { $Exc.Add('Tag Name') $Exc.Add('Tag Value') } $ExcelVar = $SmaResources.SQLSERVER $ExcelVar | ForEach-Object { [PSCustomObject]$_ } | Select-Object -Unique $Exc | Export-Excel -Path $File -WorksheetName 'SQL Servers' -AutoSize -MaxAutoSizeRows 100 -TableName $TableName -TableStyle $tableStyle -ConditionalText $condtxt -Style $Style } } |