What happened?
Creating OCI resources doesn't appear to be adding the pulumi resource name
Steps to reproduce
Create any resource, for example a VCN
vcn = new oci.core.Vcn(
"example",
{
compartmentId: <someid>,
cidrBlocks: [<someCidr>],
},
);
Expected Behavior
I would expect the resulting vcn to be called something like example-<randomstring>
Actual Behavior
It creates a vcn with a set name:
Output of pulumi about
No response
Additional context
No response
Contributing
Vote on this issue by adding a 👍 reaction.
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).
What happened?
Creating OCI resources doesn't appear to be adding the pulumi resource name
Steps to reproduce
Create any resource, for example a VCN
Expected Behavior
I would expect the resulting vcn to be called something like
example-<randomstring>Actual Behavior
It creates a vcn with a set name:
Output of
pulumi aboutNo response
Additional context
No response
Contributing
Vote on this issue by adding a 👍 reaction.
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).