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
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,10 +113,10 @@ List od code and variable (API) changes:
113
113
| <aname="input_max_concurrency_level"></a> [max\_concurrency\_level](#input\_max\_concurrency\_level)| Object parameter that specifies the concurrency level for SQL statements (i.e. queries and DML) executed by a warehouse. |`number`|`null`| no |
114
114
| <aname="input_min_cluster_count"></a> [min\_cluster\_count](#input\_min\_cluster\_count)| Specifies the minimum number of server clusters for the warehouse (only applies to multi-cluster warehouses). |`number`|`1`| no |
115
115
| <aname="input_name"></a> [name](#input\_name)| Name of the resource |`string`| n/a | yes |
116
-
| <a name="input_name_scheme"></a> [name\_scheme](#input\_name\_scheme) | Naming scheme configuration for the resource. This configuration is used to generate names using context provider:<br> - `properties` - list of properties to use when creating the name - is superseded by `var.context_templates`<br> - `delimiter` - delimited used to create the name from `properties` - is superseded by `var.context_templates`<br> - `context_template_name` - name of the context template used to create the name<br> - `replace_chars_regex` - regex to use for replacing characters in property-values created by the provider - any characters that match the regex will be removed from the name<br> - `extra_values` - map of extra label-value pairs, used to create a name | <pre>object({<br> properties = optional(list(string), ["environment", "name"])<br> delimiter = optional(string, "_")<br> context_template_name = optional(string, "snowflake-warehouse")<br> replace_chars_regex = optional(string, "[^a-zA-Z0-9_]")<br> extra_values = optional(map(string))<br> })</pre> | `{}` | no |
116
+
| <a name="input_name_scheme"></a> [name\_scheme](#input\_name\_scheme) | Naming scheme configuration for the resource. This configuration is used to generate names using context provider:<br/> - `properties` - list of properties to use when creating the name - is superseded by `var.context_templates`<br/> - `delimiter` - delimited used to create the name from `properties` - is superseded by `var.context_templates`<br/> - `context_template_name` - name of the context template used to create the name<br/> - `replace_chars_regex` - regex to use for replacing characters in property-values created by the provider - any characters that match the regex will be removed from the name<br/> - `extra_values` - map of extra label-value pairs, used to create a name<br/> - `uppercase` - convert name to uppercase | <pre>object({<br/> properties = optional(list(string), ["environment", "name"])<br/> delimiter = optional(string, "_")<br/> context_template_name = optional(string, "snowflake-warehouse")<br/> replace_chars_regex = optional(string, "[^a-zA-Z0-9_]")<br/> extra_values = optional(map(string))<br/> uppercase = optional(bool, true)<br/> })</pre> | `{}` | no |
117
117
| <aname="input_query_acceleration_max_scale_factor"></a> [query\_acceleration\_max\_scale\_factor](#input\_query\_acceleration\_max\_scale\_factor)| Specifies the maximum scale factor for leasing compute resources for query acceleration. The scale factor is used as a multiplier based on warehouse size. |`number`|`null`| no |
118
118
| <aname="input_resource_monitor"></a> [resource\_monitor](#input\_resource\_monitor)| Specifies the name of a resource monitor that is explicitly assigned to the warehouse. |`string`|`null`| no |
| <aname="input_scaling_policy"></a> [scaling\_policy](#input\_scaling\_policy)| Specifies the policy for automatically starting and shutting down clusters in a multi-cluster warehouse running in Auto-scale mode. Valid values are `STANDARD` and `ECONOMY`. |`string`|`null`| no |
121
121
| <aname="input_statement_queued_timeout_in_seconds"></a> [statement\_queued\_timeout\_in\_seconds](#input\_statement\_queued\_timeout\_in\_seconds)| Object parameter that specifies the time, in seconds, a SQL statement (query, DDL, DML, etc.) can be queued on a warehouse before it is canceled by the system. |`number`|`null`| no |
122
122
| <aname="input_statement_timeout_in_seconds"></a> [statement\_timeout\_in\_seconds](#input\_statement\_timeout\_in\_seconds)| Specifies the time, in seconds, after which a running SQL statement (query, DDL, DML, etc.) is canceled by the system |`number`|`null`| no |
@@ -128,8 +128,8 @@ List od code and variable (API) changes:
Copy file name to clipboardExpand all lines: variables.tf
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,7 @@ variable "roles" {
106
106
context_template_name =optional(string)
107
107
replace_chars_regex =optional(string)
108
108
extra_labels =optional(map(string))
109
+
uppercase =optional(bool)
109
110
}))
110
111
comment =optional(string)
111
112
role_ownership_grant =optional(string)
@@ -135,13 +136,15 @@ variable "name_scheme" {
135
136
- `context_template_name` - name of the context template used to create the name
136
137
- `replace_chars_regex` - regex to use for replacing characters in property-values created by the provider - any characters that match the regex will be removed from the name
137
138
- `extra_values` - map of extra label-value pairs, used to create a name
0 commit comments