getRealmKeys

Use this data source to get the keys of a realm. Keys can be filtered by algorithm and status. Remarks:

  • A key must meet all filter criteria

  • This data source may return more than one value.

  • If no key matches the filter criteria, then an error will be returned.

Return

A collection of values returned by getRealmKeys.

Parameters

argument

A collection of arguments for invoking getRealmKeys.


suspend fun getRealmKeys(algorithms: List<String>? = null, realmId: String, statuses: List<String>? = null): GetRealmKeysResult

Return

A collection of values returned by getRealmKeys.

Parameters

algorithms

When specified, keys will be filtered by algorithm. The algorithms can be any of HS256, RS256,AES, etc.

realmId

The realm from which the keys will be retrieved.

statuses

When specified, keys will be filtered by status. The statuses can be any of ACTIVE, DISABLED and PASSIVE.

See also


Return

A collection of values returned by getRealmKeys.

Parameters

argument

Builder for com.pulumi.keycloak.kotlin.inputs.GetRealmKeysPlainArgs.

See also