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
Add the ability to add inherited role to the global resource. Use case can be described in the suse blog
Add a new resource field to the schema for inherited_cluster_roles.
resource "rancher2_global_role" "foo" { name = "foo" new_user_default = true description = "Terraform global role acceptance test" inherited_cluster_roles = ["projects-view"] rules { api_groups = ["*"] resources = ["secrets"] verbs = ["create"] } }
The text was updated successfully, but these errors were encountered:
This was added in #1242 but missing in the documentation. So this should just be a documentation PR.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
Add the ability to add inherited role to the global resource. Use case can be described in the suse blog
Describe the solution you'd like
Add a new resource field to the schema for inherited_cluster_roles.
Additional context
The text was updated successfully, but these errors were encountered: