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
I have a big enterprise clients who is using Netskope and I'm introducing them to terraform, and now we are using this provider.
This is not on Terraform registry
if this still in development, at least how to use it locally steps should be introduced:
this is my local .terraformrc configuration for anyone wants to run this locally:
.terraformrc
disable_checkpoint = true plugin_cache_dir = "$HOME/.terraform.d/plugin-cache" provider_installation { filesystem_mirror { path = "/Users/mohammed/.terraform.d/plugins" include = ["registry.terraform.io/*/*"] } direct {} }
$HOME/.terraform tree
$HOME/.terraform
. └── plugins └── registry.terraform.io └── xxx └── ns └── 0.0.1 └── darwin_arm64
providers.tf
terraform { required_providers { ns = { source = "xxx/ns" version = "0.0.1" } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a big enterprise clients who is using Netskope and I'm introducing them to terraform, and now we are using this provider.
This is not on Terraform registry
if this still in development, at least how to use it locally steps should be introduced:
this is my local
.terraformrc
configuration for anyone wants to run this locally:$HOME/.terraform
treeproviders.tf
The text was updated successfully, but these errors were encountered: