agreeable-whale-35898
09/17/2022, 1:17 PMpulumi up
, is there a way for it to print my `Pulumi.Aws.Ec2.Instance`'s PublicIp
property? I couldn't find it in docs, or maybe I just misunderstand some concept (e.g. "Outputs", but I'm not sure how to have it printed each time I run pulumi up
).
I tried e.g. (in C#): Output.All(server.PublicIp)
and similar things, but nothing gets printed upon pulumi up
stocky-restaurant-98004
09/17/2022, 2:21 PMagreeable-whale-35898
09/17/2022, 3:31 PMbusy-kitchen-1186
09/18/2022, 8:10 AMconsole.log
does not print out anything.stocky-restaurant-98004
09/19/2022, 1:04 PMDiagnostics
in the output?import * as pulumi from "@pulumi/pulumi";
console.log("Hello, Pulumi.");
Gives this output: