Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,24 @@

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).

## [v8.0.0](https://github.com/puppetlabs/puppetlabs-apache/tree/v8.0.0) (2022-08-08)
## [v8.1.0](https://github.com/puppetlabs/puppetlabs-apache/tree/v8.1.0) (2022-08-18)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-apache/compare/v8.0.0...v8.1.0)

### Added

- Manage DNF module for mod\_auth\_openidc [\#2283](https://github.com/puppetlabs/puppetlabs-apache/pull/2283) ([ekohl](https://github.com/ekohl))
- pdksync - \(GH-cat-11\) Certify Support for Ubuntu 22.04 [\#2276](https://github.com/puppetlabs/puppetlabs-apache/pull/2276) ([david22swan](https://github.com/david22swan))

### Fixed

- Allow integers for timeouts [\#2294](https://github.com/puppetlabs/puppetlabs-apache/pull/2294) ([traylenator](https://github.com/traylenator))
- Allow setting icons\_path to false so no alias will be set for it [\#2292](https://github.com/puppetlabs/puppetlabs-apache/pull/2292) ([Zarne](https://github.com/Zarne))
- fix duplicate definition of auth\_basic-mod [\#2287](https://github.com/puppetlabs/puppetlabs-apache/pull/2287) ([sircubbi](https://github.com/sircubbi))
- Allow custom\_config to have a string priority again [\#2284](https://github.com/puppetlabs/puppetlabs-apache/pull/2284) ([martin-koerner](https://github.com/martin-koerner))
- Remove auth\_kerb and nss from Debian Bullseye [\#2281](https://github.com/puppetlabs/puppetlabs-apache/pull/2281) ([ekohl](https://github.com/ekohl))

## [v8.0.0](https://github.com/puppetlabs/puppetlabs-apache/tree/v8.0.0) (2022-08-09)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-apache/compare/v7.0.0...v8.0.0)

Expand Down
48 changes: 41 additions & 7 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,7 @@ Default value: `'Indexes MultiViews'`

##### <a name="icons_path"></a>`icons_path`

Data type: `Stdlib::Absolutepath`
Data type: `Variant[Boolean, Stdlib::Absolutepath]`

Sets the local path for an /icons/ Alias. Default depends on operating system:
- Debian: /usr/share/apache2/icons
Expand Down Expand Up @@ -1399,15 +1399,15 @@ Default value: ``undef``

##### <a name="cas_timeout"></a>`cas_timeout`

Data type: `Optional[String]`
Data type: `Optional[Variant[Integer[0],String]]`

The hard limit, in seconds, for a mod_auth_cas session.

Default value: ``undef``

##### <a name="cas_idle_timeout"></a>`cas_idle_timeout`

Data type: `Optional[String]`
Data type: `Optional[Variant[Integer[0],String]]`

The limit, in seconds, of how long a mod_auth_cas session can be idle.

Expand Down Expand Up @@ -1591,10 +1591,44 @@ Default value: ``undef``

Installs and configures `mod_auth_openidc`.

* **Note** Unsupported platforms: OracleLinux: 6; RedHat: 6; Scientific: 6; SLES: all

* **See also**
* https://github.com/zmartzone/mod_auth_openidc
* for additional documentation.

#### Parameters

The following parameters are available in the `apache::mod::auth_openidc` class:

* [`manage_dnf_module`](#manage_dnf_module)
* [`dnf_module_ensure`](#dnf_module_ensure)
* [`dnf_module_name`](#dnf_module_name)

##### <a name="manage_dnf_module"></a>`manage_dnf_module`

Data type: `Boolean`

Whether to manage the DNF module

Default value: `and`

##### <a name="dnf_module_ensure"></a>`dnf_module_ensure`

Data type: `String[1]`

The DNF module name to ensure. Only relevant if manage_dnf_module is set to true.

Default value: `'present'`

##### <a name="dnf_module_name"></a>`dnf_module_name`

Data type: `String[1]`

The DNF module name to manage. Only relevant if manage_dnf_module is set to true.

Default value: `'mod_auth_openidc'`

### <a name="apachemodauthn_core"></a>`apache::mod::authn_core`

Installs `mod_authn_core`.
Expand Down Expand Up @@ -5651,7 +5685,7 @@ Default value: `'On'`

##### <a name="proxy_timeout"></a>`proxy_timeout`

Data type: `Optional[String]`
Data type: `Optional[Variant[Integer[0],String]]`

Network timeout for proxied requests.

Expand Down Expand Up @@ -7326,7 +7360,7 @@ Default value: ``undef``

##### <a name="priority"></a>`priority`

Data type: `Variant[Integer, Boolean]`
Data type: `Apache::Vhost::Priority`

Sets the configuration file's priority by prefixing its filename with this parameter's
numeric value, as Apache processes configuration files in alphanumeric order.<br />
Expand Down Expand Up @@ -10636,11 +10670,11 @@ Default value: ``false``

##### <a name="oidc_settings"></a>`oidc_settings`

Data type: `Optional[Apache::OIDCSettings]`
Data type: `Apache::OIDCSettings`

An Apache::OIDCSettings Struct containing (mod_auth_openidc settings)[https://github.com/zmartzone/mod_auth_openidc/blob/master/auth_openidc.conf].

Default value: ``undef``
Default value: `{}`

##### <a name="limitreqfields"></a>`limitreqfields`

Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-apache",
"version": "8.0.0",
"version": "8.1.0",
"author": "puppetlabs",
"summary": "Installs, configures, and manages Apache virtual hosts, web services, and modules.",
"license": "Apache-2.0",
Expand Down