-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
85 lines (67 loc) · 2.31 KB
/
variables.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// AWS Variables
variable "aws_region" {
type = string
default = "us-east-1"
}
// S3 Bucket Variables
variable "s3_bucket_name" {
type = string
description = "The name of the Featureform S3 bucket used for storing Snowflake data"
}
// IAM Variables
variable "iam_role_name" {
type = string
description = "The name of the IAM role used by the Snowflake External Volume"
}
variable "iam_policy_name" {
type = string
description = "The name of the IAM policy used by the Snowflake External Volume"
}
variable "iam_external_id" {
type = string
description = "The external ID is used to grant access to your AWS resources (such as S3 buckets) to a third party like Snowflake"
}
variable "iam_user_arn" {
type = string
description = "The AWS IAM user created for your Snowflake account when creating the external volume"
default = null
}
// Snowflake Variables
variable "snowflake_role" {
type = string
description = "The name of the Snowflake Role used by the Snowflake External Volume"
default = "ACCOUNTADMIN"
}
variable "snowflake_database" {
type = string
description = "The name of the Snowflake Database in which you want to create the External Volume"
}
variable "snowflake_schema" {
type = string
description = "The name of the Snowflake Schema in which you want to create the External Volume"
default = "PUBLIC"
}
variable "snowflake_warehouse" {
type = string
description = "The name of the Snowflake Warehouse in which you want to create the External Volume"
}
variable "snowflake_volume_name" {
type = string
description = "The name of the Snowflake External Volume"
}
variable "snowflake_region" {
type = string
description = "The Snowflake region in which you want to create the External Volume (e.g. us-west-2.aws)"
}
variable "snowflake_user" {
type = string
description = "The service user name created for programmatic access to Snowflake"
}
variable "snowflake_account" {
type = string
description = "value of the Snowflake account (e.g. <ORG ID>-<ACCOUNT ID>)"
}
variable "snowflake_private_key_path" {
type = string
description = "The path to the private key file used to authenticate with Snowflake (e.g. /Users/<username>/.ssh/snowflake_tf.p8)"
}