Why doesn't pulumi use typescript's sum types for ...
# typescript
c
Why doesn't pulumi use typescript's sum types for parameters with a fixed set of possible values? Like
type SkuTier = "Free" | "Paid"
instead of just
string
that allows all kinds of inputs?
1
s
They do in many cases! Which provider is this in particular?