# @summary SSL configuration hash for nginx # Will either have SSL set to false, or SSL set to true, along with # appropriate SSL parameters. type Letsencrypt::Ssl_conf::Nginx = Variant[ Struct[{ ssl => Boolean, }], Struct[{ ssl => Boolean, ssl_redirect => Boolean, ssl_cert => String, ssl_key => String, }], ]