Skip to content

Commit

Permalink
Optionally store certificate pem in config
Browse files Browse the repository at this point in the history
  • Loading branch information
webprofusion-chrisc committed Sep 22, 2024
1 parent 1d4ebb6 commit a698337
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Certify.Models/Config/ManagedCertificate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,11 @@ public ManagedCertificate()
/// </summary>
public string? CustomRenewalIntervalMode { get; set; }

/// <summary>
/// PEM encoded version of public certificate
/// </summary>
public string? CertificatePEM { get; set; }

public override string ToString() => $"[{Id ?? "null"}]: \"{Name}\"";

[JsonIgnore]
Expand Down

0 comments on commit a698337

Please sign in to comment.