Skip to content

Commit ad8ad25

Browse files
authored
Merge pull request #75 from opus-codium/drop-legacy-parameters
Drop legacy parameters
2 parents d2a8133 + 386d350 commit ad8ad25

File tree

3 files changed

+0
-28
lines changed

3 files changed

+0
-28
lines changed

REFERENCE.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ The following parameters are available in the `dehydrated` class:
6666
* [`cron_integration`](#-dehydrated--cron_integration)
6767
* [`ip_version`](#-dehydrated--ip_version)
6868
* [`ca`](#-dehydrated--ca)
69-
* [`ca_terms`](#-dehydrated--ca_terms)
70-
* [`license`](#-dehydrated--license)
7169
* [`challengetype`](#-dehydrated--challengetype)
7270
* [`keysize`](#-dehydrated--keysize)
7371
* [`openssl_cnf`](#-dehydrated--openssl_cnf)
@@ -177,22 +175,6 @@ Path to certificate authority.
177175

178176
Default value: `undef`
179177

180-
##### <a name="-dehydrated--ca_terms"></a>`ca_terms`
181-
182-
Data type: `Optional[Stdlib::Httpurl]`
183-
184-
Path to certificate authority license terms redirect.
185-
186-
Default value: `undef`
187-
188-
##### <a name="-dehydrated--license"></a>`license`
189-
190-
Data type: `Optional[String]`
191-
192-
Path to license agreement.
193-
194-
Default value: `undef`
195-
196178
##### <a name="-dehydrated--challengetype"></a>`challengetype`
197179

198180
Data type: `Optional[Enum['http-01', 'dns-01']]`

manifests/init.pp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
# @param cron_integration Setup cron to automatically renew certificates.
1414
# @param ip_version Use only this IP version for name resolution.
1515
# @param ca Path to certificate authority.
16-
# @param ca_terms Path to certificate authority license terms redirect.
17-
# @param license Path to license agreement.
1816
# @param challengetype Challenge type to be used.
1917
# @param keysize Default keysize for private keys.
2018
# @param openssl_cnf Path to openssl config file.
@@ -45,8 +43,6 @@
4543

4644
Optional[Variant[Integer[4,4],Integer[6,6]]] $ip_version = undef,
4745
Optional[Stdlib::Httpurl] $ca = undef,
48-
Optional[Stdlib::Httpurl] $ca_terms = undef,
49-
Optional[String] $license = undef,
5046
Optional[Enum['http-01', 'dns-01']] $challengetype = undef,
5147
Optional[Integer[0]] $keysize = undef,
5248
Optional[String] $openssl_cnf = undef,

templates/config.epp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ IP_VERSION=<%= String($dehydrated::ip_version, '%p') %>
66
<% unless $dehydrated::ca =~ Undef { -%>
77
CA=<%= String($dehydrated::ca, '%p') %>
88
<% } -%>
9-
<% unless $dehydrated::ca_terms =~ Undef { -%>
10-
CA_TERMS=<%= String($dehydrated::ca_terms, '%p') %>
11-
<% } -%>
12-
<% unless $dehydrated::license =~ Undef { -%>
13-
LICENSE=<%= String($dehydrated::license, '%p') %>
14-
<% } -%>
159
<% unless $dehydrated::challengetype =~ Undef { -%>
1610
CHALLENGETYPE=<%= String($dehydrated::challengetype, '%p') %>
1711
<% } -%>

0 commit comments

Comments
 (0)