Skip to content

Commit

Permalink
Connection string from env var
Browse files Browse the repository at this point in the history
  • Loading branch information
nad-au committed Feb 4, 2024
1 parent f0b6bbb commit 84e1fb4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions actionstep-auth-function/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion actionstep-auth-function/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dbc-tech/actionstep-auth-function",
"version": "1.3.0",
"version": "1.4.0",
"description": "ActionStep API integration - Azure Function (Auth)",
"repository": "https://github.com/dbc-tech/actionstep",
"author": "DBC",
Expand Down
8 changes: 4 additions & 4 deletions actionstep-auth-function/src/io/blob.io.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { input, output } from '@azure/functions'

export const blobInput = input.storageBlob({
path: process.env.ACTIONSTEP_TOKEN_BLOB_PATH!,
connection: 'AzureWebJobsStorage',
path: process.env.ACTIONSTEP_TOKEN_BLOB_PATH,
connection: process.env.ACTIONSTEP_STORAGE_CONNECTION,
})

export const blobOutput = output.storageBlob({
path: process.env.ACTIONSTEP_TOKEN_BLOB_PATH!,
connection: 'AzureWebJobsStorage',
path: process.env.ACTIONSTEP_TOKEN_BLOB_PATH,
connection: process.env.ACTIONSTEP_STORAGE_CONNECTION,
})
4 changes: 2 additions & 2 deletions actionstep-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion actionstep-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dbc-tech/actionstep",
"version": "1.3.0",
"version": "1.4.0",
"description": "ActionStep API integration",
"repository": "https://github.com/dbc-tech/actionstep",
"author": "DBC",
Expand Down

0 comments on commit 84e1fb4

Please sign in to comment.