Skip to content

Commit

Permalink
Add in new users
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasyu888 committed Sep 25, 2023
1 parent c01669b commit 0c09dbe
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion admin/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ terraform {
version = "0.71"
}
}
cloud {
organization = "sage-bionetworks"

workspaces {
name = "snowflake"
}
}
}

variable "snowflake_user" {
Expand Down Expand Up @@ -56,4 +63,16 @@ resource "snowflake_user" "user" {
provider = snowflake.useradmin
name = "[email protected]"
login_name = "[email protected]"
}
}

resource "snowflake_user" "bmacdonald" {
provider = snowflake.useradmin
name = "[email protected]"
login_name = "[email protected]"
}

resource "snowflake_user" "rxu" {
provider = snowflake.useradmin
name = "[email protected]"
login_name = "[email protected]"
}

0 comments on commit 0c09dbe

Please sign in to comment.