Skip to content

Commit

Permalink
Merge pull request #136 from Pmaraveyias/cert-type
Browse files Browse the repository at this point in the history
sets default value for CertificateType to Auto
  • Loading branch information
rvelaVenafi authored Nov 6, 2023
2 parents 628bd92 + 08c6bd1 commit 3e95dae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vcert/connection_tpp_abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ def request_cert(self, request, zone):
request_data = {
'PolicyDN': self._normalize_zone(zone),
'ObjectName': request.friendly_name,
'DisableAutomaticRenewal': "true"
'DisableAutomaticRenewal': "true",
'CertificateType': "Auto"
}
zone_config = self.read_zone_conf(zone)
request.update_from_zone_config(zone_config)
Expand Down

0 comments on commit 3e95dae

Please sign in to comment.