Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
idavidc committed Apr 9, 2024
1 parent e305b80 commit 819ee85
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sparklin/BlobTriggerFuncApp/BlobTriggerFunction/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
from pyapacheatlas.core import PurviewClient

oauth = ServicePrincipalAuthentication(
tenant_id=<<tenant_id>>,
client_id=<<client_id>>,
client_secret=<<client_secret>>
tenant_id='fd799da1-bfc1-4234-a91c-72b3a1cb9e26',
client_id=os.getenv('client-id'),
client_secret=os.getenv('app-secret')
)

client = PurviewClient(
account_name=<<purview instance>>,
account_name=os.getenv('purview'),
authentication=oauth
)

Expand Down

0 comments on commit 819ee85

Please sign in to comment.