Skip to content

Commit 45fc5a9

Browse files
feat(bigquery): added security_mode option for google_bigquery_routine (#13331) (#982)
[upstream:b9a9af8f935b287f4ad0ac290c576da4cee13259] Signed-off-by: Modular Magician <[email protected]>
1 parent a0ca0fe commit 45fc5a9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

bigquery_routine_basic/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ resource "google_bigquery_routine" "sproc" {
77
routine_id = "routine_id-${local.name_suffix}"
88
routine_type = "PROCEDURE"
99
language = "SQL"
10+
security_mode = "INVOKER"
1011
definition_body = "CREATE FUNCTION Add(x FLOAT64, y FLOAT64) RETURNS FLOAT64 AS (x + y);"
1112
}

0 commit comments

Comments
 (0)