Skip to content

Commit

Permalink
Fix PR Terraform init check.
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bkou committed Dec 16, 2024
1 parent 19ff4a2 commit f3b974a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ module "geff" {
providers = {
snowflake.api_integration_role = snowflake.api_integration_role
snowflake.storage_integration_role = snowflake.storage_integration_role
snowsql.storage_integration_role = snowsql.storage_integration_role
aws = aws
}
}
13 changes: 11 additions & 2 deletions examples/complete/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,21 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.38.0"
version = "~> 5.72.0"
}

snowflake = {
source = "Snowflake-Labs/snowflake"
version = "~> 0.64.0"
version = "~> 0.73.0"
}

snowsql = {
source = "aidanmelen/snowsql"
version = ">= 1.3.3"

configuration_aliases = [
snowsql.storage_integration_role,
]
}
}
}

0 comments on commit f3b974a

Please sign in to comment.