diff --git a/REFERENCE.md b/REFERENCE.md index fe0dcb06b..e162c6e75 100644 --- a/REFERENCE.md +++ b/REFERENCE.md @@ -815,9 +815,10 @@ Alias of ```puppet Array[Struct[{ - 'type' => String, - 'path' => String, - Optional['config'] => Hash, + 'type' => String, + 'path' => String, + Optional['removePathPrefix'] => Boolean, + Optional['config'] => Hash, }]] ``` diff --git a/types/key_storage_config.pp b/types/key_storage_config.pp index 25a146a45..cdebf34cc 100644 --- a/types/key_storage_config.pp +++ b/types/key_storage_config.pp @@ -1,8 +1,9 @@ # Rundeck key storage config type. type Rundeck::Key_storage_config = Array[ Struct[{ - 'type' => String, - 'path' => String, - Optional['config'] => Hash, + 'type' => String, + 'path' => String, + Optional['removePathPrefix'] => Boolean, + Optional['config'] => Hash, }] ]