This message was deleted.
s
This message was deleted.
m
There are a couple ways to address this. One way is to add definite assignment assertions to each property. https://www.typescriptlang.org/docs/handbook/release-notes/typescript-2-7.html#definite-assignment-assertions Adding an exclamation point after the property names like:
public readonly serverUri!: pulumi.Output<string>;
b
oh great thanks, didnt know about the ! thing