Skip to content

Commit

Permalink
Fix gov version to upper case.
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pkommini committed Jul 22, 2022
1 parent f201763 commit e158625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage_integration.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit e158625

Please sign in to comment.