Certificate Inventory Management: Default Value for renewal tracking
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2025 12:26 AM
Hello Experts!
Trying to figure out how the default value 'do not create renewal task' in the field 'Renewal Tracking' is mapping while we are discovering the certificates via SN discovery port scanning.
Please share the valuable insight to it, would be helpful.
Best Regards,
Paritosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2025 01:11 AM
This field is populated via: sn_disco_certmgmt_certificate_history BR: Discovery - Certificate Captured
Script action: Discovery Certificate Captured Script include: PopulateCmdbCICertificate
In PopulateCmdbCICertificate you can see:
setDefaultsForUserDefinedFields: function(certGr) {
if
(gs.getProperty('glide.discovery.certs.enable_renewal_task_creation_for_discovered_certificates',
"true") == "true") {
certGr.setValue('renewal_tracking', "priority3");
} else
certGr.setValue('renewal_tracking', "none");
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2025 01:18 AM
any luck ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2025 01:20 AM
This field is populated via: sn_disco_certmgmt_certificate_history BR: Discovery - Certificate Captured
Script action: Discovery Certificate Captured Script include: PopulateCmdbCICertificate
In PopulateCmdbCICertificate you can see:
setDefaultsForUserDefinedFields: function(certGr) {
if
(gs.getProperty('glide.discovery.certs.enable_renewal_task_creation_for_discovered_certificates',
"true") == "true") {
certGr.setValue('renewal_tracking', "priority3");
} else
certGr.setValue('renewal_tracking', "none");