Group: id
and parentId
are of different types
#28
Labels
kind/enhancement
Improvements or new features
id
and parentId
are of different types
#28
In Gitlab, you can nest groups. You first create a parent group. Then, you should be able to pass the
id
of the parent group as the value of theparentId
property for the child group.At the moment, the types of these two properties are different:
id: Output<ID>
andtype ID = string;
https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/gitlab/#Group-id
parentId: number | Promise<number> | OutputInstance<number> | undefined
https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/gitlab/#Group-parentId
So I can not directly pass the
id
as the value forparentId
. Can this be fixed by tweaking and regenerating the Pulumi wrapper around the TF provider?The text was updated successfully, but these errors were encountered: