The report below gives back a list of AWS Instances and their AWS product code.
The report will only list assets when the following criteria are met:
- You have Lansweeper 7.1 or higher.
- There is AWS Instance data scanned.
- The AWS instance has product code data.
- The asset has the active state.
Code:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tsysIPLocations.IPLocation,
tblAssetCustom.Manufacturer,
tblAWSInstance.InstanceId,
tblAWSInstance.InstanceType,
tblAWSInstance.Platform,
tblAWSInstance.Region,
tblAWSInstance.State,
tblAWSProductCode.ProductCodeId,
tblAWSProductCode.ProductCodeType
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tsysIPLocations On tsysIPLocations.LocationID =
tblAssets.LocationID
Inner Join tblState On tblState.State = tblAssetCustom.State
Inner Join tblAWSInstance On tblAWSInstance.AssetId = tblAssets.AssetID
Inner Join tblAWSProductCode On tblAWSProductCode.AWSInstanceId =
tblAWSInstance.AWSInstanceId
Where tblState.Statename = 'Active'
Order By tblAWSInstance.Region,
tblAssets.IPNumeric,
tblAssets.AssetName,
tblAWSProductCode.ProductCodeId