Skip to content

Commit

Permalink
pe_installer_source: Use Stdlib::HTTPSUrl datatype (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak authored Aug 5, 2024
1 parent 3634902 commit 4476621
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -1857,7 +1857,7 @@ Default value: `undef`

##### <a name="-peadm--install--pe_installer_source"></a>`pe_installer_source`

Data type: `Optional[String]`
Data type: `Optional[Stdlib::HTTPSUrl]`

The URL to download the Puppet Enterprise installer media from. If not
specified, PEAdm will attempt to download PE installation media from its
Expand Down Expand Up @@ -2319,7 +2319,7 @@ Default value: `undef`

##### <a name="-peadm--upgrade--pe_installer_source"></a>`pe_installer_source`

Data type: `Optional[String]`
Data type: `Optional[Stdlib::HTTPSUrl]`

The URL to download the Puppet Enterprise installer media from. If not
specified, PEAdm will attempt to download PE installation media from its
Expand Down
2 changes: 1 addition & 1 deletion plans/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
# Common Configuration
String $console_password,
Peadm::Pe_version $version = '2021.7.8',
Optional[String] $pe_installer_source = undef,
Optional[Stdlib::HTTPSUrl] $pe_installer_source = undef,
Optional[Array[String]] $dns_alt_names = undef,
Optional[String] $compiler_pool_address = undef,
Optional[String] $internal_compiler_a_pool_address = undef,
Expand Down
2 changes: 1 addition & 1 deletion plans/subplans/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
# Common Configuration
String $console_password,
Peadm::Pe_version $version,
Optional[String] $pe_installer_source = undef,
Optional[Stdlib::HTTPSUrl] $pe_installer_source = undef,
Array[String] $dns_alt_names = [],
Hash $pe_conf_data = {},

Expand Down
2 changes: 1 addition & 1 deletion plans/upgrade.pp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

# Common Configuration
Optional[Peadm::Pe_version] $version = undef,
Optional[String] $pe_installer_source = undef,
Optional[Stdlib::HTTPSUrl] $pe_installer_source = undef,
Optional[String] $compiler_pool_address = undef,
Optional[String] $internal_compiler_a_pool_address = undef,
Optional[String] $internal_compiler_b_pool_address = undef,
Expand Down

0 comments on commit 4476621

Please sign in to comment.