Skip to content

Commit

Permalink
Update auth_config type and refs
Browse files Browse the repository at this point in the history
  • Loading branch information
Joris29 committed Dec 4, 2023
1 parent ba23060 commit d501d49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -784,9 +784,9 @@ Alias of

```puppet
Struct[{
Optional['file'] => Hash[String, Data],
Optional['ldap'] => Hash[String, Data],
Optional['pam'] => Hash[String, Data],
Optional['file'] => Hash[String, Any],
Optional['ldap'] => Hash[String, Any],
Optional['pam'] => Hash[String, Any],
}]
```

Expand Down
6 changes: 3 additions & 3 deletions types/auth_config.pp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Rundeck authentication config type.
type Rundeck::Auth_config = Struct[{
Optional['file'] => Hash[String, Data],
Optional['ldap'] => Hash[String, Data],
Optional['pam'] => Hash[String, Data],
Optional['file'] => Hash[String, Any],
Optional['ldap'] => Hash[String, Any],
Optional['pam'] => Hash[String, Any],
}]

0 comments on commit d501d49

Please sign in to comment.