forked from immuta/terraform-snowflake-fast-data-warehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
26 lines (22 loc) · 644 Bytes
/
Copy pathvariables.tf
File metadata and controls
26 lines (22 loc) · 644 Bytes
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
variable "snowflake_account" {
description = "The Snowflake account for resources to be loaded into."
type = string
}
variable "snowflake_region" {
description = "The AWS region of the Snowflake account."
type = string
}
variable "snowflake_username" {
description = "The username for the Snowflake Terraform user"
sensitive = true
type = string
}
variable "snowflake_user_password" {
description = "The password for the Snowflake Terraform user"
sensitive = true
type = string
}
variable "snowflake_user_role" {
description = "The role of the Terraform user."
type = string
}