Skip to content

Commit

Permalink
fix: set env var requirements back to original settings (#491)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattb-hippo authored Aug 6, 2024
1 parent 23c0ce4 commit f6013ee
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ public interface IApplicationConfiguration
[RequiredForEnvironment(ApplicationEnvironment.All, Hidden = false)]
string GoogleTagManagerKey { get; }

[RequiredForEnvironment(ApplicationEnvironment.All, Hidden = false)]
[RequiredForEnvironment(ApplicationEnvironment.None, Hidden = false)]
string SearchApiKey { get; }

[RequiredForEnvironment(ApplicationEnvironment.All, Hidden = false)]
[RequiredForEnvironment(ApplicationEnvironment.None, Hidden = false)]
string SearchEndpoint { get; }

[RequiredForEnvironment(ApplicationEnvironment.All, Hidden = false, Obfuscate = false)]
[RequiredForEnvironment(ApplicationEnvironment.None, Hidden = false, Obfuscate = false)]
string SearchIndexName { get; }
}

0 comments on commit f6013ee

Please sign in to comment.