-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
52 lines (43 loc) · 1.05 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
terraform {
required_providers {
snowflake = {
source = "Snowflake-Labs/snowflake"
version = ">0.45.0"
}
azurerm = {
source = "hashicorp/azurerm"
version = "=3.0.0"
}
}
}
provider "snowflake" {
# Configuration options
// required
username = "admin"
account = "og25952.east-us-2.azure"
//region = "..."
// optional, at exactly one must be set
password = "Onam@2020"
// password = data.azurerm_key_vault_secret.secert.value
}
# provider "snowflake" {
# // required
# username = "..."
# account = "..."
# region = "..."
# // optional, at exactly one must be set
# password = "..."
# oauth_access_token = "..."
# private_key_path = "..."
# private_key = "..."
# private_key_passphrase = "..."
# oauth_refresh_token = "..."
# oauth_client_id = "..."
# oauth_client_secret = "..."
# oauth_endpoint = "..."
# oauth_redirect_url = "..."
# // optional
# role = "..."
# host = "..."
# warehouse = "..."
# }