https://pulumi.com logo
Title
s

straight-intern-54129

06/28/2021, 8:00 PM
Is it possible to set "skip_provider_registration" in Pulumi? I am trying to call
pulumi up
with limited Azure access for a client and it fails because it's trying to register all resource providers up front. Terraform gives this error message:
error: Error ensuring Resource Providers are registered.

    Terraform automatically attempts to register the Resource Providers it supports to
    ensure it's able to provision resources.

    If you don't have permission to register Resource Providers you may wish to use the
    "skip_provider_registration" flag in the Provider block to disable this functionality.
g

gentle-diamond-70147

06/28/2021, 8:03 PM
pulumi config set azure:skipProviderRegistration true
should do the same for you in pulumi.
s

straight-intern-54129

06/28/2021, 8:09 PM
That did the trick. Thank you!
👍 1