Reputation: 179
I wanted to execute few queries for the Snowflake with terraform like. use role admin; alter account set saml_identity_provider = '{ "certificate": "test", "ssoUrl": "https://abccorp.okta.com/app/<okta_snowflake_app_id>/sso/saml", "type" : "OKTA" }';
I want to execute queries like this.Is there any terraform templates that is available,
Upvotes: 1
Views: 1117
Reputation: 7067
There is a terraform provider plugin for managing Snowflake accounts. Coverage is focused on the parts of Snowflake that are related to access control. Example use cases include:
Upvotes: 0