Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update materialize-snowflake for optional account #1528

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@ Use the below properties to configure a Snowflake materialization, which will di

| Property | Title | Description | Type | Required/Default |
|------------------------------|---------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|--------|------------------|
| **`/account`** | Account | The Snowflake account identifier | string | Required |
| **`/database`** | Database | Name of the Snowflake database to which to materialize | string | Required |
| **`/host`** | Host (Account URL) | The Snowflake Host used for the connection. Example: orgname-accountname.snowflakecomputing.com (do not include the protocol). | string | Required |
| `/role` | Role | Role assigned to the user | string | |
| **`/database`** | Database | Name of the Snowflake database to which to materialize | string | Required |
| **`/schema`** | Schema | Database schema for bound collection tables (unless overridden within the binding resource configuration) as well as associated materialization metadata tables | string | Required |
| `/warehouse` | Warehouse | Name of the data warehouse that contains the database | string | |
| `/role` | Role | Role assigned to the user | string | |
| `/account` | Account | The Snowflake account identifier | string | |
| **`/credentials`** | Credentials | Credentials for authentication | object | Required |
| **`/credentials/auth_type`** | Authentication type | One of `user_password` or `jwt` | string | Required |
| **`/credentials/user`** | User | Snowflake username | string | Required |
Expand All @@ -155,7 +155,6 @@ materializations:
endpoint:
connector:
config:
account: acmeCo
database: acmeCo_db
host: orgname-accountname.snowflakecomputing.com
schema: acmeCo_flow_schema
Expand All @@ -181,7 +180,6 @@ materializations:
endpoint:
connector:
config:
account: acmeCo
database: acmeCo_db
host: orgname-accountname.snowflakecomputing.com
schema: acmeCo_flow_schema
Expand Down
Loading