You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix: schema name in fivetran does not allow some characters
* fix: must define ROLE ARN for Snowflake Source
* Adds SQL Script to generate read-only user for RDS
* Bug: Snowflake Network Policy doesn't work, remove for now
* Adjust readmes and variable names
* must pass role arn in analytics module to fivetran
min_cluster_count=var.multi_cluster_warehouses_enabled?1:null# if set to less than max count, auto-scaling is enabled
19
+
scaling_policy=var.multi_cluster_warehouses_enabled?"ECONOMY":null# Conserves credits by favoring keeping running clusters fully-loaded
20
20
}
21
21
22
22
locals {
23
23
network_policy_name="IpNetworkPolicy"
24
24
}
25
25
26
+
27
+
#
28
+
# when using "SECURITYADMIN" + "SYSADMIN" roles, which should be suffcient, see https://docs.snowflake.com/en/sql-reference/sql/create-network-policy.html
# A Snowflake account can only have one network policy set globally at any given time.
42
-
# This resource does not enforce one-policy-per-account, it is the user's responsibility to enforce this. If multiple network policy resources have set_for_account: true,
43
-
# the final policy set on the account will be non-deterministic.
0 commit comments