opentofu / registry

The all-new opentofu.org registry!
https://search.opentofu.org
Apache License 2.0
325 stars 40 forks source link

Add Missing Provider mrparkers/keycloak #1270

Closed AchimGrolimund closed 1 hour ago

AchimGrolimund commented 2 hours ago

i could not find the Provider in the regestry: https://registry.terraform.io/providers/mrparkers/keycloak/latest/docs

Thanks alot.

cam72cam commented 2 hours ago

Hi, did you search via registry.opentofu.org? It is not fully populated and still in beta.

cam72cam commented 2 hours ago

The reference exists in the actual registry and I'll double check that the provider works in .tf files.

cam72cam commented 2 hours ago
$ tofu init

Initializing the backend...

Initializing provider plugins...
- Finding latest version of mrparkers/keycloak...
- Installing mrparkers/keycloak v4.4.0...
- Installed mrparkers/keycloak v4.4.0. Signature validation was skipped due to the registry not containing GPG keys for this provider

OpenTofu has created a lock file .terraform.lock.hcl to record the provider
selections it made above. Include this file in your version control repository
so that OpenTofu can guarantee to make the same selections by default when
you run "tofu init" in the future.

OpenTofu has been successfully initialized!

You may now begin working with OpenTofu. Try running "tofu plan" to see
any changes that are required for your infrastructure. All OpenTofu commands
should now work.

If you ever set or change modules or backend configuration for OpenTofu,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.

$ cat main.tf 
terraform {
        required_providers {
                keycloak = { source = "mrparkers/keycloak" }
        }
}

Looks like you should be all set, we should probably make the banner a bit more clear on the beta registry search interface.

AchimGrolimund commented 2 hours ago

I used the search but with keycloak i only get some rancher resources

AchimGrolimund commented 2 hours ago

But your test is an evidence for me, so you can close the issue.

Thanks alot