Skip to content

Commit

Permalink
drift after apply issues (#115)
Browse files Browse the repository at this point in the history
* drift after apply issues

---------

Co-authored-by: TJ Murphy <1796+teej@users.noreply.github.com>
  • Loading branch information
titan-teej and teej authored Sep 24, 2024
1 parent 20b9776 commit 2e074f9
Show file tree
Hide file tree
Showing 37 changed files with 1,068 additions and 1,102 deletions.
2 changes: 1 addition & 1 deletion tests/fixtures/json/authentication_policy.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"client_types": [
"SNOWFLAKE_UI"
],
"comment": "Auth policy that only allows access through the web interface",
"comment": null,
"owner": "SECURITYADMIN",
"mfa_enrollment": "OPTIONAL",
"security_integrations": [
Expand Down
5 changes: 4 additions & 1 deletion tests/fixtures/json/view.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
"change_tracking": false,
"columns": [
{
"name": "id"
"name": "id",
"data_type": null,
"comment": "this is a column comment",
"not_null": false
}
],
"comment": "This is a view",
Expand Down
8 changes: 4 additions & 4 deletions tests/fixtures/json/warehouse.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"owner": "SYSADMIN",
"warehouse_type": "STANDARD",
"warehouse_size": "XSMALL",
"max_cluster_count": null,
"min_cluster_count": null,
"scaling_policy": null,
"max_cluster_count": 1,
"min_cluster_count": 1,
"scaling_policy": "STANDARD",
"auto_suspend": 60,
"auto_resume": false,
"initially_suspended": true,
"resource_monitor": null,
"comment": "My XSMALL warehouse",
"enable_query_acceleration": false,
"query_acceleration_max_scale_factor": null,
"query_acceleration_max_scale_factor": 8,
"max_concurrency_level": 8,
"statement_queued_timeout_in_seconds": 0,
"statement_timeout_in_seconds": 172800
Expand Down
3 changes: 1 addition & 2 deletions tests/fixtures/sql/authentication_policy.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
CREATE AUTHENTICATION POLICY restrict_client_types_policy
CLIENT_TYPES = ('SNOWFLAKE_UI')
COMMENT = 'Auth policy that only allows access through the web interface';
CLIENT_TYPES = ('SNOWFLAKE_UI');
Loading

0 comments on commit 2e074f9

Please sign in to comment.