masson
Version:
Module execution engine for cluster deployments.
45 lines (33 loc) • 1.16 kB
Markdown
FreeIPA Client package, to use with FreeIPA Server.
Follows [production deployment configuration](https://www.freeipa.org/page/Deployment_Recommendations)
Options:
* `ssl.cert` (string, optional, "/etc/ipa/cert.pem")
Path where to store the certificate.
* `ssl.enabled` (boolean, optional, false)
Enable certificate generation and tracking.
* `ssl.key` (string, optional, "/etc/ipa/key.pem")
Path where to store the private key.
* `ssl.subject` (string|object, optional, "CN=<fqdn>")
Requested subject name.
* `ssl.subject.CN` (string, optional, "<fqdn>")
Common name.
* `ssl.subject.O` (string, optional)
Organisation name.
* `ssl.principal` (string, optional, "HTTP/<fqdn>")
Requested principal name.
```json
{ "ssl":
"enabled": true
"subject": {
"O": "AU.ADALTAS.CLOUD"
} }
```
Renewable tickets is per default disallowed in the most linux distributions. This can be done per:
```bash
kadmin.local: modprinc -maxrenewlife 7day krbtgt/YOUR_REALM
kadmin.local: modprinc -maxrenewlife 7day +allow_renewable hue/FQRN
```