Unable to connect snowflake with user/password authentication #937
Unanswered
anikarunakaran
asked this question in
Q&A
Replies: 1 comment
-
Check if you have |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does anyone know why i am getting below given error while using user/password authentication for snowflake?.
terraform {
required_providers {
snowflake = {
source = "chanzuckerberg/snowflake"
version = "0.28.7"
}
}
}
provider "snowflake" {
Configuration options
username = "admin"
account = "xxxxxx"
region = "east-us-2.azure"
password = "xxxxxxxx"
}
resource "snowflake_database" "demo_db" {
name = "demo_db"
}
=====================================
Error: Conflicting configuration arguments
│
│ with provider["registry.terraform.io/chanzuckerberg/snowflake"],
│ on main.tf line 10, in provider "snowflake":
│ 10: provider "snowflake" {
│
│ "private_key_path": conflicts with password
Beta Was this translation helpful? Give feedback.
All reactions