Learning about ComponentResource, I checked <https...
# general
b
Learning about ComponentResource, I checked https://github.com/pulumi/pulumi-eks/blob/master/nodejs/eks/cluster.ts as an example. Class have multiple public properties, but only one of them is
pulumi.Output<>
and it is the only passed to
this.registerOutputs()
, why is that?
h
Docs need to be updated, but apparently
.registerOutputs()
doesn't need to be passed anything anymore? (Unless that's just python) It's not really documented anywhere how to create your own `Output`s, and I've complained about the inconsistency of both inputs and outputs.
b
It's not really documented anywhere how to create your own `Output`s
Isn't it just
pulumi.output(value)
?