mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
SSL and CA Modules - Add base
This commit is contained in:
14
salt/ca/files/signing_policies.conf
Normal file
14
salt/ca/files/signing_policies.conf
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
x509_signing_policies:
|
||||||
|
filebeat:
|
||||||
|
- minions: '*'
|
||||||
|
- signing_private_key: /etc/pki/ca.key
|
||||||
|
- signing_cert: /etc/pki/ca.crt
|
||||||
|
- C: US
|
||||||
|
- ST: Utah
|
||||||
|
- L: Salt Lake City
|
||||||
|
- basicConstraints: "critical CA:false"
|
||||||
|
- keyUsage: "critical keyEncipherment"
|
||||||
|
- subjectKeyIdentifier: hash
|
||||||
|
- authorityKeyIdentifier: keyid,issuer:always
|
||||||
|
- days_valid: 3000
|
||||||
|
- copypath: /etc/pki/issued_certs/
|
||||||
38
salt/ca/init.sls
Normal file
38
salt/ca/init.sls
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
/etc/salt/minion.d/signing_policies.conf:
|
||||||
|
file.managed:
|
||||||
|
- source: salt://ca/files/signing_policies.conf
|
||||||
|
|
||||||
|
/etc/pki:
|
||||||
|
file.directory: []
|
||||||
|
|
||||||
|
/etc/pki/issued_certs:
|
||||||
|
file.directory: []
|
||||||
|
|
||||||
|
/etc/pki/ca.crt:
|
||||||
|
x509.certificate_managed:
|
||||||
|
- signing_private_key: /etc/pki/ca.key
|
||||||
|
- CN: ca.example.com
|
||||||
|
- C: US
|
||||||
|
- ST: Utah
|
||||||
|
- L: Salt Lake City
|
||||||
|
- basicConstraints: "critical CA:true"
|
||||||
|
- keyUsage: "critical cRLSign, keyCertSign"
|
||||||
|
- subjectKeyIdentifier: hash
|
||||||
|
- authorityKeyIdentifier: keyid,issuer:always
|
||||||
|
- days_valid: 3650
|
||||||
|
- days_remaining: 0
|
||||||
|
- backup: True
|
||||||
|
- managed_private_key:
|
||||||
|
name: /etc/pki/ca.key
|
||||||
|
bits: 4096
|
||||||
|
backup: True
|
||||||
|
- require:
|
||||||
|
- file: /etc/pki
|
||||||
|
|
||||||
|
mine.send:
|
||||||
|
module.run:
|
||||||
|
- func: x509.get_pem_entries
|
||||||
|
- kwargs:
|
||||||
|
glob_path: /etc/pki/ca.crt
|
||||||
|
- onchanges:
|
||||||
|
- x509: /etc/pki/ca.crt
|
||||||
21
salt/ssl/init.sls
Normal file
21
salt/ssl/init.sls
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
# Trust the CA
|
||||||
|
/usr/local/share/ca-certificates:
|
||||||
|
file.directory: []
|
||||||
|
|
||||||
|
/usr/local/share/ca-certificates/intca.crt:
|
||||||
|
x509.pem_managed:
|
||||||
|
- text: {{ salt['mine.get']('ca', 'x509.get_pem_entries')['ca']['/etc/pki/ca.crt']|replace('\n', '') }}
|
||||||
|
|
||||||
|
# Request a cert
|
||||||
|
/etc/pki/filebeat.crt:
|
||||||
|
x509.certificate_managed:
|
||||||
|
- ca_server: ca
|
||||||
|
- signing_policy: filebeat
|
||||||
|
- public_key: /etc/pki/filebeat.key
|
||||||
|
- CN: www.example.com
|
||||||
|
- days_remaining: 3000
|
||||||
|
- backup: True
|
||||||
|
- managed_private_key:
|
||||||
|
name: /etc/pki/filebeat.key
|
||||||
|
bits: 4096
|
||||||
|
backup: True
|
||||||
Reference in New Issue
Block a user