Use the POST /kerberos/realms
endpoint to create a new Kerberos Realm. If the Kerberos Realm is not properly configured, a 422
status code is returned along with a list of validation errors that must be corrected.
Code | Reason |
---|---|
201 | Kerberos realm created. |
400 | The request was improperly formatted or contained invalid fields. |
422 | Validation error(s) occurred. |
KerberosRealm
Property | Type | Description |
---|---|---|
id | string | The persistent, unique ID for the Kerberos Realm. It can be any combination of [a-z0-9._-]. This property is system-assigned if not specified. |
kerberosEncryptedPassword | string | For GET requests, this field contains the encrypted Domain/Realm password, if one exists. For POST and PUT requests, if you wish to reuse the existing password, this field should be passed back unchanged. |
kerberosPassword | string | The Domain/Realm password. GETs will not return this attribute. To update this field, specify the new value in this attribute. |
kerberosRealmName * | string | The Domain/Realm name used for display in UI screens. |
kerberosUsername * | string | The Domain/Realm username. |
keyDistributionCenters | array[string] | The Domain Controller/Key Distribution Center Host Action Names. |
suppressDomainNameConcatenation | boolean | Controls whether the KDC hostnames and the realm name are concatenated in the auto-generated krb5.conf file. Default is false. |