From e158625ce302365a94198a40ca0ae749550a3296 Mon Sep 17 00:00:00 2001 From: Prasanth Kommini Date: Thu, 21 Jul 2022 19:17:12 -0700 Subject: [PATCH] Fix gov version to upper case. --- storage_integration.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage_integration.tf b/storage_integration.tf index eb6f66d..ae466c0 100644 --- a/storage_integration.tf +++ b/storage_integration.tf @@ -2,7 +2,7 @@ locals { pipeline_bucket_ids = [ for bucket_arn in var.data_bucket_arns : element(split(":::", bucket_arn), 1) ] - storage_provider = length(regexall(".*gov.*", local.aws_region)) > 0 ? "s3gov" : "s3" + storage_provider = length(regexall(".*gov.*", local.aws_region)) > 0 ? "S3GOV" : "S3" } resource "snowflake_storage_integration" "this" {