Skip to content

Commit

Permalink
fix: Remove name from the label module (#7)
Browse files Browse the repository at this point in the history
* Remove name from the label module

* fix: Fix formatting
  • Loading branch information
jakubigla authored Jan 18, 2023
1 parent 00f8af2 commit 950c7e9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ module "user_label" {
delimiter = coalesce(module.this.context.delimiter, "_")
regex_replace_chars = coalesce(module.this.context.regex_replace_chars, "/[^_a-zA-Z0-9]/")
label_value_case = coalesce(module.this.context.label_value_case, "upper")
name = "snowflake-user"

}

resource "tls_private_key" "this" {
Expand All @@ -23,6 +21,7 @@ resource "tls_private_key" "this" {
algorithm = "RSA"
rsa_bits = 4096
}

resource "random_password" "this" {
count = local.generate_password ? 1 : 0
length = 16
Expand Down

0 comments on commit 950c7e9

Please sign in to comment.