https://pulumi.com logo
Title
b

bland-xylophone-56721

10/31/2022, 5:01 PM
Hey folks, when running a stack preview I'd like to compare proposed changes to the current stack, to determine what extra resources may be used. Basic example: a user modifies 10x VM's from 16GB RAM to 32GB, I'd like to know that they are requesting 160GB more RAM resources. Some code (C#):
// PREVIEW CHANGES
var output = stack.PreviewAsync(new PreviewOptions
{
    Color = "always",
    OnStandardOutput = Console.WriteLine,
}).Result;
All this tells me in the
output.ChangeSummary
is that 10 resources will be created. How can programatically see before & after for comparison? Thanks!