Skip to content

Commit

Permalink
changing config.toml moving more to default settings
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jdemlow committed Aug 19, 2024
1 parent 85add12 commit ec5f172
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 16 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/deploy_sis_app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:
workflow_dispatch:

env:
SNOWFLAKE_CONNECTIONS_MYCONNECTION_PASSWORD: ${{ secrets.SNOWFLAKE_PASSWORD }} # Add these secerts to github repository
SNOWFLAKE_CONNECTIONS_MYCONNECTION_ACCOUNT: ${{ secrets.SNOWFLAKE_ACCOUNT }} # Add these secerts to github repository
SNOWFLAKE_CONNECTIONS_MYCONNECTION_USER: ${{ secrets.SNOWFLAKE_USER }} # Add these secerts to github repository
SNOWFLAKE_CONNECTIONS_MYCONNECTION_DATABASE: 'PLAYGROUND' # Add these secerts to github repository
SNOWFLAKE_CONNECTIONS_MYCONNECTION_SCHEMA: 'DEV' # Add these secerts to github repository
SNOWFLAKE_CONNECTIONS_MYCONNECTION_WAREHOUSE: 'DEMO_WH' # Add these secerts to github repository
SNOWFLAKE_CONNECTIONS_MYCONNECTION_ROLE: 'ACCOUNTADMIN' # Add these secerts to github repository
SNOWFLAKE_PASSWORD: ${{ secrets.SNOWFLAKE_PASSWORD }} # Add these secerts to github repository
SNOWFLAKE_ACCOUNT: ${{ secrets.SNOWFLAKE_ACCOUNT }} # Add these secerts to github repository
SNOWFLAKE_USER: ${{ secrets.SNOWFLAKE_USER }} # Add these secerts to github repository
SNOWFLAKE_DATABASE: 'PLAYGROUND' # Add these secerts to github repository
SNOWFLAKE_SCHEMA: 'DEV' # Add these secerts to github repository
SNOWFLAKE_WAREHOUSE: 'DEMO_WH' # Add these secerts to github repository
SNOWFLAKE_ROLE: 'ACCOUNTADMIN' # Add these secerts to github repository

jobs:
snowflake-cli:
Expand All @@ -37,7 +37,7 @@ jobs:
id: TestSnowClI
run: |
snow --version
snow connection set-default "myconnection"
snow connection set-default "default"
snow connection test
- name: Deploy SIS App
Expand Down
9 changes: 1 addition & 8 deletions config.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
[connections.myconnection]
account = ""
user = ""
password = ""
database = ""
schema = ""
warehouse = ""
role = ""
[connections.default]

0 comments on commit ec5f172

Please sign in to comment.