terraform-provider-keycloak icon indicating copy to clipboard operation
terraform-provider-keycloak copied to clipboard

Allow filtering realm keys by use

Open justjanne opened this issue 2 years ago • 0 comments

Keycloak exposes several fields on realm keys:

{
	"1": {
		"providerId": "...",
		"providerPriority": 100,
		"kid": "...",
		"status": "ACTIVE",
		"type": "RSA",
		"algorithm": "RS256",
		"publicKey": "...",
		"certificate": "...",
		"use": "ENC"
	}
}

Currently the provider allows filtering by type and algorithm. It’d be awesome if it’d also be possible to filter by use.

It looks like it’d just be a change here and here, but I’m unsure whether that’s all that’s needed

justjanne avatar Dec 30 '21 11:12 justjanne