aboutsummaryrefslogtreecommitdiff
path: root/types/ssl_conf/apache.pp
blob: ceba4d0cfa48bbeef59e82b8eb7dbbb219610ec0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# @summary SSL configuration hash for Apache
type Letsencrypt::Ssl_conf::Apache = Variant[
  Struct[{
      ssl => Boolean,
  }],
  Struct[{
      ssl       => Boolean,
      ssl_cert  => String,
      ssl_key   => String,
      ssl_chain => String,
  }],
]