This message was deleted.
# general
s
This message was deleted.
r
Hmm… datadog.Provider doesn’t take
Input<string>
?
Looks like it does… you should just be able to pass
Promise<string>
directly into it then.
Input<T>
is actually
T | Output<T> | Promise<T>
so it should “just work”
🙌 1