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
| <aname="input_create_default_roles"></a> [create\_default\_roles](#input\_create\_default\_roles)| Whether the default roles should be created |`bool`|`false`| no |
89
89
| <aname="input_enabled"></a> [enabled](#input\_enabled)| Whether the storage integration is enabled |`bool`|`true`| no |
90
90
| <aname="input_name"></a> [name](#input\_name)| Name of the resource |`string`| n/a | yes |
91
-
| <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 |
| <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 |
| <aname="input_storage_allowed_locations"></a> [storage\_allowed\_locations](#input\_storage\_allowed\_locations)| Explicitly limits external stages that use the integration to reference one or more storage locations |`list(string)`| n/a | yes |
94
94
| <aname="input_storage_aws_object_acl"></a> [storage\_aws\_object\_acl](#input\_storage\_aws\_object\_acl)| Value of "bucket-owner-full-control" enables support for AWS access control lists (ACLs) to grant the bucket owner full control |`string`|`null`| no |
95
95
| <aname="input_storage_aws_role_arn"></a> [storage\_aws\_role\_arn](#input\_storage\_aws\_role\_arn)| AWS Role ARN |`string`|`null`| no |
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
@@ -75,6 +75,7 @@ variable "roles" {
75
75
context_template_name =optional(string)
76
76
replace_chars_regex =optional(string)
77
77
extra_labels =optional(map(string))
78
+
uppercase =optional(bool)
78
79
}))
79
80
comment =optional(string)
80
81
role_ownership_grant =optional(string)
@@ -98,13 +99,15 @@ variable "name_scheme" {
98
99
- `context_template_name` - name of the context template used to create the name
99
100
- `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
100
101
- `extra_values` - map of extra label-value pairs, used to create a name
0 commit comments