21 references to SecretType
Aspire.Hosting.Azure.AppService (21)
AzureAppServiceWebsiteContext.cs (21)
195
private (object,
SecretType
) ProcessValue(object value,
SecretType
secretType =
SecretType
.None, object? parent = null, bool isSlot = false)
221
var
st = param.Secret ?
SecretType
.Normal : secretType;
244
return (AllocateKeyVaultSecretUriReference(vaultSecretReference),
SecretType
.KeyVault);
247
return (AllocateParameter(vaultSecretReference, secretType:
SecretType
.KeyVault),
SecretType
.KeyVault);
296
var
finalSecret = trueSecret !=
SecretType
.None || falseSecret !=
SecretType
.None
297
?
SecretType
.Normal
298
:
SecretType
.None;
317
var
finalSecretType =
SecretType
.None;
322
if (secret !=
SecretType
.None)
324
finalSecretType =
SecretType
.Normal;
536
if (secretType ==
SecretType
.KeyVault)
920
private ProvisioningParameter AllocateParameter(IManifestExpressionProvider parameter,
SecretType
secretType =
SecretType
.None)
922
return parameter.AsProvisioningParameter(Infra, isSecure: secretType ==
SecretType
.Normal);