How to grant permissions to an external role created by Okta #105
-
I'm integrating Okta with Snowflake, and one of the functionalities that Okta provides is to push groups to Snowflake. Basically, say if I define a How can I assign permission to this role? It seems that SnowDDL will automatically add suffixes such as |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Nvm -- This looks like it is granting an external role to the business role, not the other way around. |
Beta Was this translation helpful? Give feedback.
-
In my view, this integration method is generally useless.
You may consider using programmatic config instead.
With this approach you will have full control over creation of users / roles / grants, while keeping Okta a single point of truth and ultimate source of data about users. If running full SnowDDL every time is too "heavy", you may using CLI option Alternatively, you may check specific commands generated by SnowDDL when creating a new user and replicate just these commands. It is very simple in general:
That's it. |
Beta Was this translation helpful? Give feedback.
In my view, this integration method is generally useless.
CREATE USER
statements.You may consider using programmatic config instead.
UserBlueprints
dynamically.With this approach you will have full control over creation of users / roles / grants, while keeping Okta a single point of truth and ultimate source of …