polite-mechanic-60124
07/02/2022, 3:34 PMpulumi.Output[str]
is there anyway to check the type at runtime of <pulumi.output.Output object at 0x7d5389558400>
?<pulumi.output.Output object at 0x7d5389558400>
is not a str and we get runtime type errors during pulumi preview.billowy-army-68599
polite-mechanic-60124
07/02/2022, 4:16 PMDuring some program executions, apply doesn't run. For example, it won't run during a preview, when resource output values may be unknown. Therefore, you should avoid side-effects within the callbacks. For this reason, you should not allocate new resources inside of your callbacks either, as it could lead to pulumi preview being wrong.
Unless something has changed, apply doesn't run during pulumi preview, so its not applicablebillowy-army-68599
polite-mechanic-60124
07/02/2022, 4:37 PMbillowy-army-68599