Skip to content

Commit 950c7e9

Browse files
authored
fix: Remove name from the label module (#7)
* Remove name from the label module * fix: Fix formatting
1 parent 00f8af2 commit 950c7e9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

main.tf

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ module "user_label" {
1313
delimiter = coalesce(module.this.context.delimiter, "_")
1414
regex_replace_chars = coalesce(module.this.context.regex_replace_chars, "/[^_a-zA-Z0-9]/")
1515
label_value_case = coalesce(module.this.context.label_value_case, "upper")
16-
name = "snowflake-user"
17-
1816
}
1917

2018
resource "tls_private_key" "this" {
@@ -23,6 +21,7 @@ resource "tls_private_key" "this" {
2321
algorithm = "RSA"
2422
rsa_bits = 4096
2523
}
24+
2625
resource "random_password" "this" {
2726
count = local.generate_password ? 1 : 0
2827
length = 16

0 commit comments

Comments
 (0)