Skip to content

Commit

Permalink
Revert options object changes that prevented JSON deserializer from p…
Browse files Browse the repository at this point in the history
…opulating properties, making it appear that no CDN was configured when it really was
  • Loading branch information
Aldaviva committed Nov 14, 2024
1 parent 28cb97a commit 3fedffe
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions RaspberryPiDotnetRepository/Data/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ public record Options {

// public bool forceRegenerate { get; init; }

public string? cdnTenantId { get; private set; }
public string? cdnTenantId { get; set; }

public string? cdnClientId { get; private set; }
public string? cdnClientId { get; set; }

public string? cdnCertFilePath { get; private set; }
public string? cdnCertFilePath { get; set; }

public string cdnCertPassword { get; init; } = string.Empty;

public string? cdnSubscriptionId { get; private set; }
public string? cdnSubscriptionId { get; set; }

public string? cdnResourceGroup { get; private set; }
public string? cdnResourceGroup { get; set; }

public string? cdnProfile { get; private set; }
public string? cdnProfile { get; set; }

public string? cdnEndpointName { get; private set; }
public string? cdnEndpointName { get; set; }

/// <summary>
/// From Azure Portal > Storage accounts > account > Access keys > Connection string
Expand Down

0 comments on commit 3fedffe

Please sign in to comment.