# @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, }], ]