-
-
Save justinyoo/1862c88d5fae90bf06e6e9928db77370 to your computer and use it in GitHub Desktop.
Know Your Cloud Resource Costs on Azure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var resourceGroupCostsResults = | |
resourceGroupCosts.Select(p => | |
ResourceGroupCostResult.GetResourceGroupCostResult( | |
p, | |
resourceGroups, | |
settings.Tags)) | |
.GroupBy( | |
ResourceGroupCostResultKey.GetResourceGroupCostResultKey, | |
ResourceGroupCostResult.GetResourceGroupCostResult) | |
.OrderByDescending(p => p.Cost); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment