We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
we have the need to use this provider only on certain environment
provider "splunk" { url = try(local.env_url,"") auth_token = try(local.auth_token,"") }
The resources that use that provider use count to make sure that they don't run on the non-supported env.
count
The problem is that today there's no way to configure the provider with dummy values as it performs the login during the configureProvider method.
configureProvider
Suggestions:
enabled
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
we have the need to use this provider only on certain environment
The resources that use that provider use
count
to make sure that they don't run on the non-supported env.The problem is that today there's no way to configure the provider with dummy values as it performs the login during the
configureProvider
method.Suggestions:
enabled
(IMO less preferable)The text was updated successfully, but these errors were encountered: