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_first_name"></a> [first\_name](#input\_first\_name)| First name of the user |`string`|`null`| no |
58
58
| <aname="input_generate_password"></a> [generate\_password](#input\_generate\_password)| Generate a random password using Terraform |`bool`|`false`| no |
59
59
| <aname="input_generate_rsa_key"></a> [generate\_rsa\_key](#input\_generate\_rsa\_key)| Whether automatically generate an RSA key - IMPORTANT <br> The private key generated by this resource will be stored <br> unencrypted in your Terraform state file. <br> Use of this resource for production deployments is not recommended. |`bool`|`false`| no |
60
-
| <aname="input_grant_default_roles"></a> [grant\_default\_roles](#input\_grant\_default\_roles)| Whether to grant default\_role and default\_secondary\_roles to Snowflake User |`bool`|`true`| no |
60
+
| <aname="input_grant_default_roles"></a> [grant\_default\_roles](#input\_grant\_default\_roles)| Whether to grant default\_role to Snowflake User |`bool`|`true`| no |
61
61
| <aname="input_id_length_limit"></a> [id\_length\_limit](#input\_id\_length\_limit)| Limit `id` to this many characters (minimum 6).<br>Set to `0` for unlimited length.<br>Set to `null` for keep the existing setting, which defaults to `0`.<br>Does not affect `id_full`. |`number`|`null`| no |
62
+
| <aname="input_ignore_changes_on_defaults"></a> [ignore\_changes\_on\_defaults](#input\_ignore\_changes\_on\_defaults)| Whether to ignore configuration of `default_warehouse`, `default_role` and `default_namespace`|`bool`|`false`| no |
62
63
| <aname="input_label_key_case"></a> [label\_key\_case](#input\_label\_key\_case)| Controls the letter case of the `tags` keys (label names) for tags generated by this module.<br>Does not affect keys of tags passed in via the `tags` input.<br>Possible values: `lower`, `title`, `upper`.<br>Default value: `title`. |`string`|`null`| no |
63
64
| <aname="input_label_order"></a> [label\_order](#input\_label\_order)| The order in which the labels (ID elements) appear in the `id`.<br>Defaults to ["namespace", "environment", "stage", "name", "attributes"].<br>You can omit any of the 6 labels ("tenant" is the 6th), but at least one must be present. |`list(string)`|`null`| no |
64
65
| <aname="input_label_value_case"></a> [label\_value\_case](#input\_label\_value\_case)| Controls the letter case of ID elements (labels) as included in `id`,<br>set as tag values, and output by this module individually.<br>Does not affect values of tags passed in via the `tags` input.<br>Possible values: `lower`, `title`, `upper` and `none` (no transformation).<br>Set this to `title` and set `delimiter` to `""` to yield Pascal Case IDs.<br>Default value: `lower`. |`string`|`null`| no |
Copy file name to clipboardexpand all lines: locals.tf
+2
Original file line number
Diff line number
Diff line change
@@ -6,4 +6,6 @@ locals {
6
6
rsa_public_key=var.generate_rsa_key?join("", split("\n", trim(one(resource.tls_private_key.this[*].public_key_pem), "- \n BEGIN END PUBLIC KEY"))) : var.rsa_public_key
0 commit comments