Skip to content

Commit

Permalink
Further protected potentially sensitive object store info
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Grote <cmgrote@users.noreply.github.com>
  • Loading branch information
cmgrote committed May 28, 2024
1 parent 50ea3db commit 0e02dfd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-toolkit/config/src/main/resources/Renderers.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ local class ConnectorConfigMap extends ConfigMap {
["labels"] = new Mapping<String, String> {
["workflows.argoproj.io/configmap-type"] = "Parameter"
["orchestration.atlan.com/version"] = "1"
["orchestration.atlan.com/source"] = config.source
["orchestration.atlan.com/source"] = config.source.replaceAll(" ", "")
}
}
fixed data: Mapping<String, String> = new Mapping {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ options {
helpText = "Enter the ID of the GCP project."
width = 4
}
["password"] = new Config.TextInput {
["password"] = new Config.PasswordInput {
title = "Service account JSON"
required = false
helpText = "Enter the JSON for your service account credentials."
Expand Down Expand Up @@ -116,7 +116,7 @@ options {
helpText = "Enter the unique application (client) ID assigned to your app by Azure AD when the app was registered."
width = 4
}
["password"] = new Config.TextInput {
["password"] = new Config.PasswordInput {
title = "Azure client secret"
required = false
helpText = "Enter your client secret."
Expand All @@ -125,7 +125,7 @@ options {
["extra"] = new Config.NestedInput {
title = "ADLS details"
inputs {
["azure_tenant_id"] = new Config.TextInput {
["azure_tenant_id"] = new Config.PasswordInput {
title = "Azure tenant ID"
required = false
helpText = "Enter the unique identifier of the Azure Active Directory instance."
Expand Down

0 comments on commit 0e02dfd

Please sign in to comment.