Skip to content

Update Enable/disable public key download documentation RUN-2240 #1643

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 18 additions & 5 deletions docs/manual/key-storage/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,15 +137,28 @@ The [Key Storage API](/api/index.md#key-storage) is provided through the standar
rundeck.feature.projectKeyStorage.enabled=false
```

### Enable/Disable public key GUI download option
### Enable/Disable public key download

By default, the key storage allows users to view and download public keys.
This option can be disabled using the following flag:
By default, the key storage doesn't allow users to download the content of public keys from API or GUI.
This option can be enabled using the following flag:

```yaml
rundeck.gui.keystorage.downloadenabled=false
rundeck.feature.publicKeysDownload.enabled=true
```

Set the value to `false` to disable the download/view option. By default, the attribute is set `true`.
Set the value to `true` to enable the download public key content. By default, the attribute is set `false`.
This attribute can be set using the System Configuration (Enterprise) or adding the configuration in `rundeck-config.properties`

#### Enable/Disable public key GUI download option

Once enabled the download of public key content flag, the key storage doesn't allow users to view and download public keys from the GUI by default.
This option can be enabled using the following flag:

```yaml
rundeck.gui.keystorage.downloadenabled=true
```

Set the value to `true` to enable the download/view option. By default, the attribute is set `false`.
This attribute can be set using the System Configuration (Commercial) or adding the configuration in `rundeck-config.properties`