Skip to content

Commit

Permalink
ISSUE-401: Added support to use Managed Identity to connect to Azure …
Browse files Browse the repository at this point in the history
…SQL (#621)

Updated documentation and steps to follow to use Azure Managed Identity to connect to Azure SQL
  • Loading branch information
pega-sagas1 authored Aug 22, 2023
1 parent 6eadd35 commit 3974d12
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions charts/pega/values-large.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,11 @@ global:
# make sure the keys in the secret should be DB_USERNAME and DB_PASSWORD respectively
external_secret_name: ""
# CUSTOM CONNECTION PROPERTIES
# Add a list of ; delimited connections properties. The list must end with ;
# For example: connectionProperties=user=usr;password=pwd;
# Set `Authentication=ActiveDirectoryMSI;msiClientId=1234;` for custom authentication using Azure Managed Identity.
# Use the connectionProperties parameter to pass connection settings to your deployment
# by adding a list of semi-colon-delimited required connection setting. The list string must end with ";".
# For example, you can set a custom authentication using Azure Managed Identity and avoid using a password.
# To pass an Authentication method and a managed identity, MSI Client ID,
# set: connectionProperties: "Authentication=ActiveDirectoryMSI;msiClientId=<your Azure Managed Identity>;"
connectionProperties: ""
rulesSchema: "YOUR_RULES_SCHEMA"
dataSchema: "YOUR_DATA_SCHEMA"
Expand Down
8 changes: 5 additions & 3 deletions charts/pega/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,11 @@ global:
# make sure the keys in the secret should be DB_USERNAME and DB_PASSWORD respectively
external_secret_name: ""
# CUSTOM CONNECTION PROPERTIES
# Add a list of ; delimited connections properties. The list must end with ;
# For example: connectionProperties=user=usr;password=pwd;
# Set `Authentication=ActiveDirectoryMSI;msiClientId=1234;` for custom authentication using Azure Managed Identity.
# Use the connectionProperties parameter to pass connection settings to your deployment
# by adding a list of semi-colon-delimited required connection setting. The list string must end with ";".
# For example, you can set a custom authentication using Azure Managed Identity and avoid using a password.
# To pass an Authentication method and a managed identity, MSI Client ID,
# set: connectionProperties: "Authentication=ActiveDirectoryMSI;msiClientId=<your Azure Managed Identity>;"
connectionProperties: ""
rulesSchema: "YOUR_RULES_SCHEMA"
dataSchema: "YOUR_DATA_SCHEMA"
Expand Down

0 comments on commit 3974d12

Please sign in to comment.