21 references to SecretType
Aspire.Hosting.Azure.AppService (21)
AzureAppServiceWebsiteContext.cs (21)
161
private (object,
SecretType
) ProcessValue(object value,
SecretType
secretType =
SecretType
.None, object? parent = null, bool isSlot = false)
187
var
st = param.Secret ?
SecretType
.Normal : secretType;
210
return (AllocateKeyVaultSecretUriReference(vaultSecretReference),
SecretType
.KeyVault);
213
return (AllocateParameter(vaultSecretReference, secretType:
SecretType
.KeyVault),
SecretType
.KeyVault);
262
var
finalSecret = trueSecret !=
SecretType
.None || falseSecret !=
SecretType
.None
263
?
SecretType
.Normal
264
:
SecretType
.None;
283
var
finalSecretType =
SecretType
.None;
288
if (secret !=
SecretType
.None)
290
finalSecretType =
SecretType
.Normal;
502
if (secretType ==
SecretType
.KeyVault)
886
private ProvisioningParameter AllocateParameter(IManifestExpressionProvider parameter,
SecretType
secretType =
SecretType
.None)
888
return parameter.AsProvisioningParameter(Infra, isSecure: secretType ==
SecretType
.Normal);