Skip to content

Commit 9597ab8

Browse files
committed
annotation, changelog and readme
1 parent e137012 commit 9597ab8

3 files changed

Lines changed: 18 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
### 2.0.0
2-
* Initial Public Release
1+
### 2.0.0
2+
* Initial Public Release
33

4-
### 2.0.1
5-
* Add configuration fields to support sync filtering
6-
* Bug fixes around SAN processing
4+
### 2.0.1
5+
* Add configuration fields to support sync filtering
6+
* Bug fixes around SAN processing
7+
8+
### 2.1.0
9+
* Add support for enrolling for client certs
10+
* Option to filter sync by division ID
11+
* Option to provide division ID for enrollment

digicert-certcentral-caplugin/CertCentralCAPlugin.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -579,6 +579,13 @@ public Dictionary<string, PropertyConfigInfo> GetTemplateParameterAnnotations()
579579
Hidden = false,
580580
DefaultValue = "ssl",
581581
Type = "String"
582+
},
583+
[CertCentralConstants.Config.ENROLL_DIVISION_ID] = new PropertyConfigInfo()
584+
{
585+
Comments = "OPTIONAL: The division (container) ID to use for enrollments against this template.",
586+
Hidden = false,
587+
DefaultValue = "",
588+
Type = "String"
582589
}
583590
};
584591
}

readme_source.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,4 @@ CACertId | No | The ID of the issuing CA to be used by DigiCert. If not specifie
6060
Organization-Name | No | If specified, this value will override any organization name provided in the subject of the cert request on enrollment. Useful for requests (such as ACME) that contain no subject.
6161
RenewalWindowDays | No | The number of days from expiration that the gateway should do a reissue rather than a renewal. Default if not provided is 90, meaning any renewal request for certs that expire in more than 90 days will be treated as a reissue request.
6262
CertType | No | Allows you to specify whether the certs of this template are ssl or client certs. Valid values: ssl, client. If not provided, defaults to ssl.
63+
EnrollDivisionId | No | The division (container) ID to use for enrollments against this template.

0 commit comments

Comments
 (0)