From c25a560312f23ed1ef156b07355325b393c45e9d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 06:27:24 +0000 Subject: [PATCH] chore: bump getindata/role/snowflake in /examples/complete Bumps [getindata/role/snowflake](https://github.com/getindata/terraform-snowflake-role) from 1.0.3 to 1.4.0. - [Release notes](https://github.com/getindata/terraform-snowflake-role/releases) - [Commits](https://github.com/getindata/terraform-snowflake-role/compare/v1.0.3...v1.4.0) --- updated-dependencies: - dependency-name: getindata/role/snowflake dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- examples/complete/main.tf | 4 ++-- main.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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