-
Notifications
You must be signed in to change notification settings - Fork 8
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
Role Session Variable #330
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This allows role session variables to be set upon creation. However there is not a way (that I know of) to query the state of these session variables after creation.
Detail: "Unable to enable webhook sources for authenticated Materialize client", | ||
}) | ||
return nil, diags | ||
flags := []string{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Simplifying feature flags
@@ -79,3 +79,35 @@ var aliases = map[string]string{ | |||
"int2": "smallint", | |||
"uint": "uint4", | |||
} | |||
|
|||
var session_variables = []string{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just used for validation within the resource. Not sure if we want to this just since it might be harder to keep things in sync.
Allow session variables to be included as part of
Role
resources.