Skip to content

Commit

Permalink
Merge pull request #524 from Joris29/key_storage_config
Browse files Browse the repository at this point in the history
Fix key storage config
  • Loading branch information
bastelfreak authored Dec 5, 2023
2 parents dc92a27 + 0cd3a0d commit 38fe773
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}]]
```

Expand Down
7 changes: 4 additions & 3 deletions types/key_storage_config.pp
Original file line number Diff line number Diff line change
@@ -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,
}]
]

0 comments on commit 38fe773

Please sign in to comment.