We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We would like to query Zitadel for all project roles so that we can assign them without knowing the role names previously.
There is a datasource which makes it possible to query for roles in a specific project. I could imagine following features:
All roles:
data "zitadel_projects" "default" { org_id = data.zitadel_org.default.id project_id = data.zitadel_project.default.id }
Roles in a group:
data "zitadel_projects" "default" { org_id = data.zitadel_org.default.id project_id = data.zitadel_project.default.id group = "api" group_method = "TEXT_QUERY_METHOD_CONTAINS_IGNORE_CASE" }
Roles with name:
data "zitadel_projects" "default" { org_id = data.zitadel_org.default.id project_id = data.zitadel_project.default.id name = "api" name_method = "TEXT_QUERY_METHOD_CONTAINS_IGNORE_CASE" }
For us the most important would be the first one.
1.1.1
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Preflight Checklist
Describe your problem
We would like to query Zitadel for all project roles so that we can assign them without knowing the role names previously.
Describe your ideal solution
There is a datasource which makes it possible to query for roles in a specific project. I could imagine following features:
All roles:
Roles in a group:
Roles with name:
For us the most important would be the first one.
Version
1.1.1
Additional Context
No response
The text was updated successfully, but these errors were encountered: