Is there any reason to avoid adding dynamic names ...
# general
b
Is there any reason to avoid adding dynamic names to
ComponentResource
type
parameters to help with namespacing resources? I.E:
Copy code
class VPC extends ComponentResource {
  constructor(name: string, opts: ComponentResourceOptions = {}) {
    super(`VPCComponent/${name}`, name, undefined, opts)
  }
}
more deets here: https://github.com/pulumi/pulumi/discussions/9250