diff --git a/examples/complete/main.tf b/examples/complete/main.tf index e7d5767..fd722fc 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -6,14 +6,14 @@ resource "snowflake_user" "dbt" { module "snowflake_admin_role" { source = "getindata/role/snowflake" - version = "1.0.3" + version = "1.4.0" context = module.this.context name = "admin" } module "snowflake_dev_role" { source = "getindata/role/snowflake" - version = "1.0.3" + version = "1.4.0" context = module.this.context name = "dev" } diff --git a/main.tf b/main.tf index 591048a..f5a9c14 100644 --- a/main.tf +++ b/main.tf @@ -26,7 +26,7 @@ module "snowflake_default_role" { for_each = local.default_roles source = "getindata/role/snowflake" - version = "1.0.3" + version = "1.4.0" context = module.this.context enabled = local.create_default_roles && each.value.enabled @@ -45,7 +45,7 @@ module "snowflake_custom_role" { for_each = local.custom_roles source = "getindata/role/snowflake" - version = "1.0.3" + version = "1.4.0" context = module.this.context enabled = local.enabled && each.value.enabled