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
Terraform v0.14.2
I don't seem to be able to use any resource. I have tried with:
provider "grafana" { url = "https://grafana.${var.domain}" auth = "admin:${var.grafana_password}" } terraform { required_providers { grafana = { source = "grafana/grafana" version = ">= 1.7.0" } } } resource "grafana_user" "staff" { email = "staff.name@example.com" name = "Staff Name" login = "staff" password = "my-password" }
https://gist.github.com/davilag/6df397657c5e70189f1e74942dfaeaf1
Terraform to create the user in my Grafana instance
Terraform not using the grafana/grafana provider and instead trying to get the hashicorp/grafana provider which doesn't exist.
grafana/grafana
hashicorp/grafana
terraform init -recreate
Are there any other GitHub issues (open or closed) or Pull Requests that should be linked here? For example:
The text was updated successfully, but these errors were encountered:
The resource was inside a module so I had to define the provider within the module
Sorry, something went wrong.
No branches or pull requests
Terraform Version
Terraform v0.14.2
Affected Resource(s)
I don't seem to be able to use any resource. I have tried with:
Terraform Configuration Files
Debug Output
https://gist.github.com/davilag/6df397657c5e70189f1e74942dfaeaf1
Expected Behavior
Terraform to create the user in my Grafana instance
Actual Behavior
Terraform not using the
grafana/grafana
provider and instead trying to get thehashicorp/grafana
provider which doesn't exist.Steps to Reproduce
terraform init -recreate
References
Are there any other GitHub issues (open or closed) or Pull Requests that should be linked here? For example:
The text was updated successfully, but these errors were encountered: