-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
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
Implement namespace permission grants/roles and actions #8
Labels
Comments
sijie
added
triage/week-15
workflow::triaged
workflow::backlog
workflow::todo
and removed
workflow::triaged
workflow::backlog
workflow::todo
labels
Apr 9, 2020
ypt
added a commit
to get-bridge/terraform-provider-pulsar-streamnative
that referenced
this issue
Dec 18, 2020
Usage follows the description here: streamnative#8 ``` resource "pulsar_namespace" "test" { ... permission_grant { role = "my-consumer" actions = ["consume"] } } ```
This was referenced Dec 18, 2020
ypt
added a commit
to get-bridge/terraform-provider-pulsar-streamnative
that referenced
this issue
Dec 21, 2020
Usage follows the description here: streamnative#8 ``` resource "pulsar_namespace" "test" { ... permission_grant { role = "my-consumer" actions = ["consume"] } } ```
ypt
added a commit
to get-bridge/terraform-provider-pulsar-streamnative
that referenced
this issue
Dec 22, 2020
Usage follows the description here: streamnative#8 ``` resource "pulsar_namespace" "test" { ... permission_grant { role = "my-consumer" actions = ["consume"] } } ```
Here's a PR that implements what's proposed - #23 We're also interested in topic permission grants. I'm happy to implement an analogous PR for those, too, once we think the namespace permission implementation is headed in the right direction. |
sijie
pushed a commit
that referenced
this issue
Jan 5, 2021
Usage follows the description here: #8 ``` resource "pulsar_namespace" "test" { ... permission_grant { role = "my-consumer" actions = ["consume"] } } ```
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Community Note
Description
Implement namespace permission grants/roles and actions.
I'm working with an in-house developed terraform pulsar provider, but would like to rather adopt an open source project. The ability to add permission grants would be important for our adoption, and I'm willing to work on a pull request for this feature. I wanted to check here first and see if this was already planned, or if someone else was already working on it before I get too far along.
Potential Terraform Configuration
or something like
The text was updated successfully, but these errors were encountered: