You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Jikkou should offer a dedicated provider for Confluent Cloud to manage role bindings.
Describe the solution you'd like
Create a new provider to manage a new RoleBinding resource:
apiVersion: "iam.confluent.cloud/v1
kind: "RoleBinding"
metadata: {}
spec:
# The principal User to bind the role to
principal: <string(^User:.+$)>
# The name of the role to bind to the principal
roleName: <string>
# A CRN that specifies the scope and resource patterns necessary for the role to bind
crnPattern: <string <uri> ^crn://.+$>
Is your feature request related to a problem? Please describe.
Jikkou should offer a dedicated provider for Confluent Cloud to manage role bindings.
Describe the solution you'd like
Create a new provider to manage a new
RoleBinding
resource:Note: For that resource we could use the same schema that the one of the official terraform provider.
see: https://docs.confluent.io/cloud/current/api.html#tag/Role-Bindings-(iamv2)/The-Role-Bindings-Model
The 3 properties:
principal
,roleName
, andcrnPattern
should be used as an Identifier to detect changes.This new provider should be more or less similar to the one Jikkou already provides for Aiven: https://github.com/streamthoughts/jikkou/tree/main/providers/jikkou-provider-aiven
The text was updated successfully, but these errors were encountered: