Skip to content

Commit

Permalink
fix: Remove uppercase function since it's handled by the context (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubigla authored Jan 3, 2023
1 parent da93697 commit 1faa08f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module "role_label" {
resource "snowflake_role" "this" {
count = module.this.enabled ? 1 : 0

name = upper(local.name_from_descriptor)
name = local.name_from_descriptor
comment = var.comment
}

Expand Down

0 comments on commit 1faa08f

Please sign in to comment.