Open gim- opened 5 months ago
Test run in GitHub actions appears to be flaky.
Hey, is there anything that blocks this PR from being merged? If I understood it right, the Github action test is just buggy.
@berni2288 The project is not maintained unfortunately - https://github.com/mrparkers/terraform-provider-keycloak/issues/964
@gim- Any chance you could publish your build into Terraform registry?
Just banging my head against the wall with this priority mess...
Thanks, we need this desperately. As a temporary solution we have done the following:
make build
, or go build -o terraform-provider-keycloak_v5.0.0-priority
/Users/username/.terraform.d/plugins/registry.terraform.io/mrparkers/keycloak/5.0.0-priority/
provider_installation {
filesystem_mirror {
path = "/Users/username/.terraform.d/plugins"
include = ["registry.terraform.io/mrparkers/keycloak"]
}
direct {
exclude = ["registry.terraform.io/mrparkers/keycloak"]
}
}
This tells terraform to not fetch mrparkers/keycloak from the registry, but from your local path.
Hope this can help!
Allows to declaratively define authentication flow execution and subflow priority in Keycloak 25 onwards.
Additionally I've removed raisePriority/lowerPriority functions as they don't seem to be used anywhere.
Fixes #296