Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jcieslak committed Apr 8, 2024
1 parent 8258ede commit 5bd2d11
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkg/resources/grant_ownership_acceptance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -782,6 +782,7 @@ func TestAcc_GrantOwnership_OnTask(t *testing.T) {
"database": config.StringVariable(acc.TestDatabaseName),
"schema": config.StringVariable(acc.TestSchemaName),
"task": config.StringVariable(taskName),
"warehouse": config.StringVariable(acc.TestWarehouseName),
}
resourceName := "snowflake_grant_ownership.test"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ resource "snowflake_task" "test" {
database = var.database
schema = var.schema
name = var.task
warehouse = var.warehouse
sql_statement = "SELECT CURRENT_TIMESTAMP"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ variable "schema" {
variable "task" {
type = string
}

variable "warehouse" {
type = string
}

0 comments on commit 5bd2d11

Please sign in to comment.