Skip to content

Commit

Permalink
Fix Azure Env Variable annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
usmansaleem committed Feb 26, 2025
1 parent e4736ed commit 8051a13
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,19 @@

@EnabledIfEnvironmentVariable(
named = "AZURE_CLIENT_ID",
matches = ".*",
matches = ".+",
disabledReason = "AZURE_CLIENT_ID env variable is required")
@EnabledIfEnvironmentVariable(
named = "AZURE_CLIENT_SECRET",
matches = ".*",
matches = ".+",
disabledReason = "AZURE_CLIENT_SECRET env variable is required")
@EnabledIfEnvironmentVariable(
named = "AZURE_TENANT_ID",
matches = ".*",
matches = ".+",
disabledReason = "AZURE_TENANT_ID env variable is required")
@EnabledIfEnvironmentVariable(
named = "AZURE_KEY_VAULT_NAME",
matches = ".*",
matches = ".+",
disabledReason = "AZURE_KEY_VAULT_NAME env variable is required")
public class AzureKeyVaultMultiValueAcceptanceTest extends AcceptanceTestBase {

Expand Down

0 comments on commit 8051a13

Please sign in to comment.