A different question: is there a way to refer to '...
# yaml
g
A different question: is there a way to refer to 'the current resource' in pulumi? like
${this.properties.name}
instead of
${unique-name-of-reqsource.properties.name}
e
No, and in general this probably wouldn't be well defined? The current resource doesn't exist yet when constructing it so you'd be referring to the input args but that's also what your defining so you could introduce loops in the definition.
g
True