module "table_database_role_VENDOR" {
  for_each = toset(["DELPHI_PROD"])

  source = "git@github.com:theorchard/terraform-snowflake.git//modules/roles/table_access?ref=7.3.0"

  database = var.database_name
  schema   = each.value
  table    = "VENDOR"
}
module "table_database_role_GLOBAL_PARTICIPANT" {
  for_each = toset(["DELPHI_PROD"])

  source = "git@github.com:theorchard/terraform-snowflake.git//modules/roles/table_access?ref=7.3.0"

  database = var.database_name
  schema   = each.value
  table    = "GLOBAL_PARTICIPANT"
}
