generated from pulumi/pulumi-tf-provider-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
kind/enhancementImprovements or new featuresImprovements or new features
Description
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:
vcn<randomstring>
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).
Metadata
Metadata
Assignees
Labels
kind/enhancementImprovements or new featuresImprovements or new features