|
20 | 20 | # @param md_certificate_check |
21 | 21 | # - |
22 | 22 | # |
| 23 | +# @param md_certificate_file |
| 24 | +# Specify a static certificate file for the MD. |
| 25 | +# |
| 26 | +# @param md_certificate_key_file |
| 27 | +# Specify a static private key for for the static cerrtificate. |
| 28 | +# |
23 | 29 | # @param md_certificate_monitor |
24 | 30 | # The URL of a certificate log monitor. |
25 | 31 | # |
|
33 | 39 | # Define a program to be called when the `dns-01` challenge needs to be |
34 | 40 | # setup/torn down. |
35 | 41 | # |
| 42 | +# @param md_challenge_dns01_version |
| 43 | +# Set the type of arguments to call MDChallengeDns01 with |
| 44 | +# |
| 45 | +# @param md_check_interval |
| 46 | +# Determines how often certificates are checked |
| 47 | +# |
36 | 48 | # @param md_contact_email |
37 | 49 | # The ACME protocol requires you to give a contact url when you sign up. |
38 | 50 | # |
| 51 | +# @param md_external_account_binding |
| 52 | +# Set the external account binding keyid and hmac values to use at CA |
| 53 | +# |
39 | 54 | # @param md_http_proxy |
40 | 55 | # Define a proxy for outgoing connections. |
41 | 56 | # |
| 57 | +# @param md_initial_delay |
| 58 | +# How long to delay the first certificate check. |
| 59 | +# |
| 60 | +# @param md_match_names |
| 61 | +# Determines how DNS names are matched to vhosts |
| 62 | +# |
42 | 63 | # @param md_members |
43 | 64 | # Control if the alias domain names are automatically added. |
44 | 65 | # |
|
57 | 78 | # @param md_private_keys |
58 | 79 | # Set type and size of the private keys generated. |
59 | 80 | # |
| 81 | +# @param md_profile |
| 82 | +# Use a specific ACME profile from the CA |
| 83 | +# |
| 84 | +# @param md_profile_mandatory |
| 85 | +# Control if an MDProfile is mandatory. |
| 86 | +# |
60 | 87 | # @param md_renew_mode |
61 | 88 | # Controls if certificates shall be renewed. |
62 | 89 | # |
| 90 | +# @param md_renew_via_ari |
| 91 | +# usage of the ACME ARI extension (rfc9773). |
| 92 | +# |
63 | 93 | # @param md_renew_window |
64 | 94 | # Control when a certificate will be renewed. |
65 | 95 | # |
66 | 96 | # @param md_require_https |
67 | 97 | # Redirects http: traffic to https: for Managed Domains. |
68 | 98 | # An http: Virtual Host must nevertheless be setup for that domain. |
69 | 99 | # |
| 100 | +# @param md_retry_delay |
| 101 | +# Time length for first retry, doubled on every consecutive error. |
| 102 | +# |
| 103 | +# @param md_retry_failover |
| 104 | +# The number of errors before a failover to another CA is triggered |
| 105 | +# |
70 | 106 | # @param md_server_status |
71 | 107 | # Control if Managed Domain information is added to server-status. |
72 | 108 | # |
|
85 | 121 | # @param md_store_dir |
86 | 122 | # Path on the local file system to store the Managed Domains data. |
87 | 123 | # |
| 124 | +# @param md_store_locks |
| 125 | +# Configure locking of store for updates |
| 126 | +# |
88 | 127 | # @param md_warn_window |
89 | 128 | # Define the time window when you want to be warned about an expiring |
90 | 129 | # certificate. |
|
99 | 138 | Optional[Enum['accepted']] $md_certificate_agreement = undef, |
100 | 139 | Optional[Stdlib::HTTPUrl] $md_certificate_authority = undef, |
101 | 140 | Optional[String] $md_certificate_check = undef, # undocumented |
| 141 | + Optional[Stdlib::Absolutepath] $md_certificate_file = undef, |
| 142 | + Optional[Stdlib::Absolutepath] $md_certificate_key_file = undef, |
102 | 143 | Optional[String] $md_certificate_monitor = undef, |
103 | 144 | Optional[Enum['ACME']] $md_certificate_protocol = undef, |
104 | 145 | Optional[Apache::OnOff] $md_certificate_status = undef, |
105 | 146 | Optional[Stdlib::Absolutepath] $md_challenge_dns01 = undef, |
| 147 | + Optional[Integer[1,2]] $md_challenge_dns01_version = undef, |
| 148 | + Optional[String] $md_check_interval = undef, |
106 | 149 | Optional[String] $md_contact_email = undef, |
| 150 | + Optional[String] $md_external_account_binding = undef, |
107 | 151 | Optional[Stdlib::HTTPUrl] $md_http_proxy = undef, |
| 152 | + Optional[String] $md_initial_delay = undef, |
| 153 | + Optional[String] $md_match_names = undef, |
108 | 154 | Optional[Enum['auto', 'manual']] $md_members = undef, |
109 | 155 | Optional[Stdlib::Absolutepath] $md_message_cmd = undef, |
110 | 156 | Optional[Apache::OnOff] $md_must_staple = undef, |
111 | 157 | Optional[Stdlib::Absolutepath] $md_notify_cmd = undef, |
112 | 158 | Optional[String] $md_port_map = undef, |
113 | 159 | Optional[String] $md_private_keys = undef, |
| 160 | + Optional[String] $md_profile = undef, |
| 161 | + Optional[Apache::OnOff] $md_profile_mandatory = undef, |
114 | 162 | Optional[Enum['always', 'auto', 'manual']] $md_renew_mode = undef, |
| 163 | + Optional[Apache::OnOff] $md_renew_via_ari = undef, |
115 | 164 | Optional[String] $md_renew_window = undef, |
116 | 165 | Optional[Enum['off', 'permanent', 'temporary']] $md_require_https = undef, |
| 166 | + Optional[String] $md_retry_delay = undef, |
| 167 | + Optional[Integer[0]] $md_retry_failover = undef, |
117 | 168 | Optional[Apache::OnOff] $md_server_status = undef, |
118 | 169 | Optional[Apache::OnOff] $md_staple_others = undef, |
119 | 170 | Optional[Apache::OnOff] $md_stapling = undef, |
120 | 171 | Optional[String] $md_stapling_keep_response = undef, |
121 | 172 | Optional[String] $md_stapling_renew_window = undef, |
122 | 173 | Optional[Stdlib::Absolutepath] $md_store_dir = undef, |
| 174 | + Optional[String] $md_store_locks = undef, |
123 | 175 | Optional[String] $md_warn_window = undef, |
124 | 176 | ) { |
125 | 177 | include apache |
|
0 commit comments