-
Notifications
You must be signed in to change notification settings - Fork 106
/
AWSDataBaseReport.ps1
253 lines (224 loc) · 9.29 KB
/
AWSDataBaseReport.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<#PSScriptInfo
.VERSION 1.0
.GUID 6e0be15b-89a4-43f7-a485-66ad7f42a95a
.AUTHOR Vikas Sukhija
.COMPANYNAME TechWizard.cloud
.COPYRIGHT Vikas Sukhija
.TAGS
.LICENSEURI https://techwizard.cloud/
.PROJECTURI https://techwizard.cloud/
.ICONURI
.EXTERNALMODULEDEPENDENCIES
.REQUIREDSCRIPTS
.EXTERNALSCRIPTDEPENDENCIES
.RELEASENOTES https://techwizard.cloud/
.PRIVATEDATA
===========================================================================
Created with: ISE
Created on: 8/11/2023 1:46 PM
Created by: Vikas Sukhija
Organization:
Filename: AWSDataBaseReport.ps1
https://instances.vantage.sh/rds/ (for pricing)
===========================================================================
#>
<#
.DESCRIPTION
This solution will generate AWS Database Report
#>
param()
#################logs and variables##########################
$log = Write-Log -Name "AWSDataBaseReport" -folder "logs" -Ext "log"
$Failedlog = Write-Log -Name "Failed-AWSDataBaseReport" -folder "logs" -Ext "log"
$Report = Write-Log -Name "AWSDataBaseReport" -folder "Report" -Ext "csv"
$logrecyclelimit = "60"
$AmazonRDSInstanceComparison = (get-location).path + "\Amazon RDS Instance Comparison.csv"
$email1 = "[email protected]"
##################Admin params##########################
$smtpserver = "smtpserver"
$erroremail = "[email protected]"
$from = "[email protected]"
######################Spo Cet Auth######################
$AccessKey = "Access Key"
$SecretKey = "Secret Key"
########################################################
try
{
Import-Module AWSPowerShell
Write-Log -message "Start ......... Script" -path $log
$AWSRDSconfigdata = Import-Csv $AmazonRDSInstanceComparison
Set-DefaultAWSRegion -Region us-east-1
Set-AWSCredentials -AccessKey $AccessKey -SecretKey $SecretKey
$Creds = (Use-STSRole -RoleArn "arn:aws:iam::123456789:role/Aws-Access-role" -RoleSessionName "assume_role_session").Credentials
Write-Log -message "Loaded All Modules" -path $log
Set-AWSCredential -AccessKey $Creds.AccessKeyId -SecretKey $Creds.SecretAccessKey -SessionToken $Creds.SessionToken
}
catch
{
$exception = $_.Exception.Message
Write-Log -message "exception $exception has occured loading Modules - AWSDataBaseReport" -path $log -Severity Error
Send-MailMessage -SmtpServer $smtpserver -From $from -To $erroremail -Subject "Error - AWSDataBaseReport" -Body $($_.Exception.Message)
break;
}
#############################GEt all Accounts################################################
try
{
Write-Log -message "Fetch all ORg Accounts" -path $log
$allawsaccounts = Get-ORGAccountList | where{ $_.Status -eq "ACTIVE"}
Write-Log -message "Fetch all ORg Regions" -path $log
$regions = Get-EC2Region
Write-Log -message "Total Accounts and Regions - $($allawsaccounts.count) - $($regions.count)" -path $log
}
catch
{
$exception = $_.Exception.Message
Write-Log -message "exception $exception has occured loading Accounts - AWSDataBaseReport" -path $log -Severity Error
Send-MailMessage -SmtpServer $smtpserver -From $from -To $erroremail -Subject "Error - AWSDataBaseReport" -Body $($_.Exception.Message)
break;
}
#################################get inventory################################################>
$collinventory = @()
foreach($awsAccount in $allawsaccounts)
{
$error.clear()
$accoundid = $Accountname = $null
$accoundid = $awsAccount.Id
$Accountname = $awsAccount.Name
if($accoundid -eq '987654321'){
Set-AWSCredentials -AccessKey $AccessKey -SecretKey $SecretKey
$Creds = Get-AWSCredential
}
elseif($accoundid -eq '123456789'){
Set-AWSCredentials -AccessKey $AccessKey -SecretKey $SecretKey
$Creds = (Use-STSRole -RoleArn "arn:aws:iam::123456789:role/Aws-Access-role" -RoleSessionName "assume_role_session").Credentials
}
else{
Set-AWSCredentials -AccessKey $AccessKey -SecretKey $SecretKey
$Creds = (Use-STSRole -RoleArn "arn:aws:iam::123456789:role/Aws-Access-role" -RoleSessionName "assume_role_session").Credentials
Set-AWSCredential -AccessKey $Creds.AccessKeyId -SecretKey $Creds.SecretAccessKey -SessionToken $Creds.SessionToken
$Creds = (Use-STSRole -RoleArn $("arn:aws:iam::$accoundid" + ":role/Aws-Access-role") -RoleSessionName "assume_role_session_1").Credentials
}
if($error)
{
Write-Log -message "------Error on Account - $accoundid------" -path $Failedlog -Severity Warning
$error.clear()
}
else
{
Write-Log -message "Success - $accoundid" -path $log
foreach($region in $regions)
{
$error.clear()
$RDSDBInstanceinRegion = $null
$RDSDBInstanceinRegion = Get-RDSDBInstance -Region $region.RegionName -Credential $Creds -ErrorAction SilentlyContinue
if($error)
{
$error.clear
Write-Log -message "$accoundid - $($region.RegionName) Inventory not found" -path $log -Severity Warning
}
else
{
Write-Log -message "$accoundid - $($region.RegionName) Inventory found - $($VolumesinRegion.count)" -path $log
if($RDSDBInstanceinRegion)
{
$RDSDBInstanceinRegion | ForEach-Object{
$costcenter = $tags = $Application = $environment = $Owner = $APIName = $null
$tags = $_.TagList
if(!([string]::IsNullOrEmpty($tags)))
{
if($tags.Key -eq "costcenter")
{
$costcenter = $tags |
Where-Object -FilterScript {
$_.Key -eq "costcenter"
} |
Select-Object -ExpandProperty Value
}
}
if(!([string]::IsNullOrEmpty($tags)))
{
if($tags.Key -eq "environment")
{
$environment = $tags |
Where-Object -FilterScript {
$_.Key -eq "environment"
} |
Select-Object -ExpandProperty Value
}
}
if(!([string]::IsNullOrEmpty($tags)))
{
if($tags.Key -eq "Application")
{
$Application = $tags |
Where-Object -FilterScript {
$_.Key -eq "Application"
} |
Select-Object -ExpandProperty Value
}
}
if(!([string]::IsNullOrEmpty($tags)))
{
if($tags.Key -eq "owner")
{
$owner = $tags |
Where-Object -FilterScript {
$_.Key -eq "owner"
} |
Select-Object -ExpandProperty Value
}
}
$APIName = $_.DBInstanceClass
$mcoll = "" | select AccountName,InstanceId,ZoneName,MultiAZ,Snapshots,Encrypted,CreatedOn,DBName,Engine,Version,Username,costcenter,Size,Pillars,Tags,FullName,APIName,Memory,VirtualCores,Status,Endpoint,LatestBackup,MaintenanceWindow,BackupRetention,Active,Accounts,Application,Environment,Owner,OwnerId,VPCID
$mcoll.AccountName = $Accountname
$mcoll.InstanceId = $_.DBInstanceIdentifier
$mcoll.ZoneName = $_.AvailabilityZone
$mcoll.MultiAZ = $_.MultiAZ
$mcoll.Snapshots = $_.CopyTagsToSnapshot
$mcoll.Encrypted = $_.StorageEncrypted
$mcoll.CreatedOn = $_.InstanceCreateTime
$mcoll.DBName = $_.DBName
$mcoll.Engine = $_.Engine
$mcoll.Version = $_.EngineVersion
$mcoll.Username = $_.MasterUsername
$mcoll.costcenter = $costcenter
$mcoll.Size = $_.AllocatedStorage
$mcoll.Pillars = $null
$mcoll.Tags = ($tags | ConvertTo-csv -NoTypeInformation -Delimiter ":") -join ","
$mcoll.FullName = $($AWSRDSconfigdata | where{$_."API Name" -eq $APIName}).Name
$mcoll.APIName = $APIName
$mcoll.Memory = $($AWSRDSconfigdata | where{$_."API Name" -eq $APIName}).Memory
$mcoll.VirtualCores = $($AWSRDSconfigdata | where{$_."API Name" -eq $APIName}).vCPUs
$mcoll.Status = $_.DBInstanceStatus
$mcoll.Endpoint = $_.Endpoint.Address
$mcoll.LatestBackup = $_.LatestRestorableTime
$mcoll.MaintenanceWindow = $_.PreferredMaintenanceWindow
$mcoll.BackupRetention = $_.BackupRetentionPeriod
if($_.DBInstanceStatus -eq 'available')
{
$mcoll.Active = 'True'
}
else
{
$mcoll.Active = 'False'
}
$mcoll.Accounts = $Accountname
$mcoll.Application = $Application
$mcoll.Environment = $environment
$mcoll.Owner = $Owner
$mcoll.OwnerId = $accoundid
$mcoll.VPCID = $_.DBSubnetGroup.VpcId
$collinventory += $mcoll
}
}
}
}
}
}
$collinventory | Export-Csv $report -NoTypeInformation
Send-MailMessage -SmtpServer $smtpserver -From $from -To $email1 -bcc $erroremail -Subject "AWS Database Report" -Attachments $Report
Move-Item -Path $report -Destination $hitoricalreports -Force
###############################Recycle logs ###############################################
Set-Recyclelogs -foldername "logs" -limit $logrecyclelimit -Confirm:$false
Write-Log -Message "Script Finished" -path $log
Send-MailMessage -SmtpServer $smtpserver -From $from -To $erroremail -Subject "Log - AWSDataBaseReport" -Attachments $log