Skip to content

Commit

Permalink
fix: typo in configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
dgniewek committed Nov 4, 2024
1 parent e4974bf commit 2b31d33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module "snowflake_default_role" {
name = each.key
name_scheme = merge(
local.default_role_naming_scheme,
lookup(each.value, "naming_scheme", {})
lookup(each.value, "name_scheme", {})
)

role_ownership_grant = lookup(each.value, "role_ownership_grant", "SYSADMIN")
Expand All @@ -67,7 +67,7 @@ module "snowflake_custom_role" {
name = each.key
name_scheme = merge(
local.default_role_naming_scheme,
lookup(each.value, "naming_scheme", {})
lookup(each.value, "name_scheme", {})
)

role_ownership_grant = lookup(each.value, "role_ownership_grant", "SYSADMIN")
Expand Down

0 comments on commit 2b31d33

Please sign in to comment.