You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To fetch secret using the SDK client, you need to create a new onboarding rule and use an onboarding key for authentication.
58
+
##### 2. Using the Client Onboarding Key
59
+
To fetch secret using the Client Onboarding, you need to create a new onboarding rule and use an onboarding key for authentication.
60
60
1. Go to Secret Server > Settings > All settings and click on SDK Client.
61
61
2. Click the Client Onboarding tab, then the Create rule.
62
62
3. Enter a name for the new rule(this will be your rule_name).
63
63
4. Check the Require onboarding key box.
64
64
5. Click Save to auto-generate an onboarding key.
65
65
6. You can see the key,select the Show key option (this will be your onboarding_key).
66
66
67
-
Set authentication_mode to 1 for fetch secret using SDK client, provide the following properties:
67
+
Set authentication_mode to 1 for fetch secret using SDK client, Set the following properties in application.properties:
68
68
69
69
```ini
70
70
authentication_mode =1
@@ -75,12 +75,12 @@ rule_name =create_rule_name
75
75
onboarding_key =onboarding_key
76
76
```
77
77
78
-
### Delinea Platfrom Integration
78
+
### Delinea Platform Integration
79
79
##### 1. Using Delinea PLatform credentials
80
80
81
81
`authentication_mode` and `server_url` must be set.
82
82
83
-
Set authentication_mode to 0 for fetch secret using Delinea Platform credentials, provide the following properties:
83
+
Set authentication_mode to 0 for fetch secret using Delinea Platform credentials, Set the following properties in application.properties:
84
84
85
85
```ini
86
86
authentication_mode =0
@@ -90,8 +90,8 @@ api_version=v1
90
90
server.username =service_user
91
91
server.password =service_user_password
92
92
```
93
-
##### 2. Using the SDK client
94
-
To fetch secret using the SDK client, you need to create a new onboarding rule and use an onboarding key for authentication.
93
+
##### 2. Using the Client Onboarding Key
94
+
To fetch secret using the Client Onboarding, you need to create a new onboarding rule and use an onboarding key for authentication.
95
95
1. Go to Delinea Platform > Settings > Secret Server > Administration > Tools and integrations > click on SDK Client.
96
96
2. Click the Client Onboarding tab, then the Create rule.
97
97
3. Enter a name for the new rule(this will be your rule_name).
@@ -101,7 +101,7 @@ To fetch secret using the SDK client, you need to create a new onboarding rule a
101
101
102
102
Set authentication_mode=1 to fetch secrets using the SDK client.
103
103
Set server_url to the Secret Server URL. To find the Secret Server URL in Delinea Platform, go to Settings > Secret Server > Secret Server connection and copy the Secret Server URL.
104
-
Provide the following properties:
104
+
Set the following properties in application.properties:
105
105
106
106
```ini
107
107
authentication_mode =1
@@ -111,6 +111,17 @@ api_version=v1
111
111
rule_name =create_rule_name
112
112
onboarding_key =onboarding_key
113
113
```
114
+
115
+
## (Optional) Proxy Configuration
116
+
```ini
117
+
proxy.host = Proxy server hostname or IP address
118
+
proxy.port = Proxy server port number
119
+
proxy.username = Proxy server username (if authentication is required)
120
+
proxy.password = Proxy server password (if authentication is required)
121
+
```
122
+
123
+
Note: Leave proxy.username and proxy.password blank if your proxy does not require authentication.
124
+
114
125
## Run the jar
115
126
116
127
After the SDK application settings are configured the jar can be built:
0 commit comments