Skip to content

Commit

Permalink
REQ: Exposing Azure Client ID / Secret + removing default values
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Panuska committed Sep 23, 2020
1 parent cdd50cc commit ce1f9c1
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions Salesforce/Content/Library/Salesforce/Email_Order.sl
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
########################################################################################################################
#!!
#! @input client_id: Azure Client ID
#! @input client_secret: Azure Client Secret Key
#!!#
########################################################################################################################
namespace: Salesforce
flow:
name: Email_Order
inputs:
- user: daniel@rpamf.onmicrosoft.com
- client_id: 4c800826-f5c8-44a1-b779-2f333099823d
- client_secret:
sensitive: true
- sf_username: rpa-demo@microfocus.com
- sf_password:
default: Cloud@123
sensitive: true
workflow:
- Get_Authorization_Token:
do_external:
18ff19e5-8484-4803-857e-4a2293b91eef:
- loginAuthority: 'https://login.windows.net/rpamf.onmicrosoft.com/oauth2/token'
- clientId: 4c800826-f5c8-44a1-b779-2f333099823d
- clientId: '${client_id}'
- clientSecret:
value: 'JHAH]Yqe3*97FA0kb+]lO0X5][5iNw_]'
value: '${client_secret}'
sensitive: true
publish:
- authToken
Expand Down Expand Up @@ -143,3 +151,4 @@ extensions:
ed019201-a1a4-679c-9598-b18409ddd093:
x: 701
'y': 133

0 comments on commit ce1f9c1

Please sign in to comment.