Skip to content
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

Added acl_principal_id attribute to databricks_user, databricks_group & databricks_service_principal for easier use with databricks_access_control_rule_set #2485

Merged
merged 1 commit into from
Jul 19, 2023

Commits on Jul 18, 2023

  1. Added acl_principal_id attribute to databricks_user, `databricks_…

    …group` & `databricks_service_principal` for easier use with `databricks_access_control_rule_set`
    
    It should simplify specification of principals in the `databricks_access_control_rule_set`
    so instead of this (string with placeholders):
    
    ```
       grant_rules {
         principals = ["groups/${databricks_group.ds.display_name}"]
         role       = "roles/servicePrincipal.user"
       }
    ```
    
    it will be simpler to refer like this:
    
    ```
       grant_rules {
         principals = [databricks_group.ds.acl_principal_id]
         role       = "roles/servicePrincipal.user"
       }
    ```
    alexott committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    8658471 View commit details
    Browse the repository at this point in the history