Skip to content

Commit 1e97d0d

Browse files
committed
Fix data type for 'host' to allow for wildcards
1 parent b0eaa74 commit 1e97d0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2671,7 +2671,7 @@ Alias of
26712671

26722672
```puppet
26732673
Struct[{
2674-
Optional['Host'] => Stdlib::Host,
2674+
Optional['Host'] => String[1],
26752675
Optional['Match'] => String[1],
26762676
Optional['AddKeysToAgent'] => Enum['yes', 'no', 'ask', 'confirm'],
26772677
Optional['AddressFamily'] => Enum['any', 'inet', 'inet6'],

types/ssh_config.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
type Ssh::Ssh_Config = Struct[
44
{
5-
Optional['Host'] => Stdlib::Host,
5+
Optional['Host'] => String[1],
66
Optional['Match'] => String[1],
77
Optional['AddKeysToAgent'] => Enum['yes', 'no', 'ask', 'confirm'],
88
Optional['AddressFamily'] => Enum['any', 'inet', 'inet6'],

0 commit comments

Comments
 (0)