-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
31 lines (30 loc) · 867 Bytes
/
main.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
terraform {
required_version = ">= 1.5.6"
required_providers {
null = {
source = "hashicorp/null"
version = "~> 3.1.0"
}
snowflake = {
source = "Snowflake-Labs/snowflake"
version = "~> 0.90.0"
}
}
}
resource "snowflake_function" "this" {
comment = var.comment
database = var.database
handler = var.handler
imports = var.imports
is_secure = var.is_secure
language = var.language
name = var.name
null_input_behavior = var.null_input_behavior
packages = var.packages
return_behavior = var.return_behavior
return_type = var.return_type
runtime_version = var.runtime_version
schema = var.schema
statement = var.statement
target_path = var.target_path
}