Skip to content

feat: starttls #558

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pillar/dev/top.sls
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ base:
- tls
- users.*
- postgres.clusters
- pebble # needing to do this to have pebble rum in dev

'backup-server':
- match: nodegroup
Expand Down
4 changes: 2 additions & 2 deletions salt/bugs/config/postfix/main.cf
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ compatibility_level = 3.6


# TLS parameters
smtpd_tls_cert_file=ssl_certificate /etc/ssl/private/bugs.psf.io.pem;
smtpd_tls_key_file=etc/ssl/private/bugs.psf.io.pem;
smtpd_tls_cert_file=/etc/ssl/private/bugs.psf.io.pem
smtpd_tls_key_file=/etc/ssl/private/bugs.psf.io.pem
smtpd_tls_security_level=may

smtp_tls_CApath=/etc/ssl/certs
Expand Down
104 changes: 104 additions & 0 deletions salt/tls/init.sls
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
include:
- .pebble
- .lego

ssl-cert:
pkg.installed

certbot:
pkg.installed

{% for name in salt["pillar.get"]("tls:ca", {}) %} # " Syntax Hack
/etc/ssl/certs/{{ name }}.pem:
Expand All @@ -25,3 +31,101 @@ ssl-cert:
- require:
- pkg: ssl-cert
{% endfor %}

# initial test
{% if grains['id'] == 'salt.nyc1.psf.io' or grains['id'] == 'salt-master.vagrant.psf.io' %}
pypa.io:
acme.cert:
- email: [email protected]
- webroot: /etc/lego
- renew: 14
{% if pillar["dc"] == "vagrant" %}
- server: https://salt-master.vagrant.psf.io:14000/dir
{% endif %}
- require:
- sls: tls.lego
- file: /etc/lego/.well-known/acme-challenge

# DNS-validated domains
# dns plugins do not exist yet for route53 & gandi
{#star.python.org:#}
{# acme.cert:#}
{# - aliases:#}
{# - python.org#}
{# - email: [email protected]#}
{## - dns_plugin: route53#}
{## - dns_plugin_credentials: route53.python#}
{# - renew: 14#}
{# - server: https://localhost:14000/dir#}
{# - require:#}
{# - pkg: certbot#}
{#
- sls: tls.lego#}
{#star.pycon.org:#}
{# acme.cert:#}
{# - aliases:#}
{# - pycon.org#}
{# - email: [email protected]#}
{## - dns_plugin: route53#}
{## - dns_plugin_credentials: route53.pycon#}
{# - renew: 14#}
{# - server: https://localhost:14000/dir#}
{# - require:#}
{# - sls: tls.lego#}

{#star.pyfound.org:#}
{# acme.cert:#}
{# - aliases:#}
{# - pyfound.org#}
{# - email: [email protected]#}
{## - dns_plugin: gandiv5#}
{## - dns_plugin_credentials: gandi#}
{# - renew: 14#}
{# - require:#}
{# - sls: tls.lego#}

# HTTP-validated domains
{#{% for domain in [#}
{# 'pypa.io',#}
{# 'www.pycon.org',#}
{# 'speed.pypy.org',#}
{# 'salt-public.psf.io',#}
{# 'planetpython.org',#}
{# 'bugs.python.org'#}
{#] %}#}
{#{{ domain }}:#}
{# acme.cert:#}
{# - email: [email protected]#}
{# - webroot: /etc/lego#}
{# - renew: 14#}
{# - require:#}
{# - sls: tls.lego#}
{#{% endfor %}#}

# Multi-domain certificates
{#jython.org:#}
{# acme.cert:#}
{# - aliases:#}
{# - www.jython.net#}
{# - jython.net#}
{# - www.jython.com#}
{# - jython.com#}
{# - email: [email protected]#}
{# - webroot: /etc/lego#}
{# - renew: 14#}
{# - require:#}
{# - sls: tls.lego#}

{#bugs.python.org-multi:#}
{# acme.cert:#}
{# - name: bugs.python.org#}
{# - aliases:#}
{# - bugs.jython.org#}
{# - issues.roundup-tracker.org#}
{# - mail.roundup-tracker.org#}
{# - email: [email protected]#}
{# - webroot: /etc/lego#}
{# - renew: 14#}
{# - require:#}
{# - sls: tls.lego#}
{% endif %}
Loading