cold-yacht-45876
04/13/2021, 7:43 PMconst role = new aws.iam.Role(`role-name`, {
assumeRolePolicy: '...'
},
{
provider
});
Now I'd like to remove the provider option to use the default provider, but now pulumi wants to replace the resource:
const role = new aws.iam.Role(`role-name`, {
assumeRolePolicy: '...'
});
Is there a way around this, or am I stuck with keeping the explicit provider or accepting the replace operation? Not that big of a deal for this particular resource, but it's worse for stuff like databases, queues, etc.little-cartoon-10569
04/13/2021, 8:24 PMcold-yacht-45876
04/13/2021, 8:59 PM