aboutsummaryrefslogtreecommitdiff
path: root/manifests/renew.pp
blob: ce6fbee0ba9167005c2fe901aa81d83524b353cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# @summary Configures automatic renewal for the given certificate
# @param cert_name
#   which certificate to renew. A letsencrypt::cert of the same name
#   must exists.
# @api private
define letsencrypt::renew (
  String $cert_name = $name,
) {
  Resource["letsencrypt::renew::${letsencrypt::renew::setup::provider}"] { $cert_name:
    cert_name => $cert_name,
  }
}