21 references to SecretType
Aspire.Hosting.Azure.AppService (21)
AzureAppServiceWebsiteContext.cs (21)
143
private (object,
SecretType
) ProcessValue(object value,
SecretType
secretType =
SecretType
.None, object? parent = null, bool isSlot = false)
160
var
st = param.Secret ?
SecretType
.Normal : secretType;
183
return (AllocateKeyVaultSecretUriReference(vaultSecretReference),
SecretType
.KeyVault);
186
return (AllocateParameter(vaultSecretReference, secretType:
SecretType
.KeyVault),
SecretType
.KeyVault);
229
var
finalSecret = trueSecret !=
SecretType
.None || falseSecret !=
SecretType
.None
230
?
SecretType
.Normal
231
:
SecretType
.None;
250
var
finalSecretType =
SecretType
.None;
255
if (secret !=
SecretType
.None)
257
finalSecretType =
SecretType
.Normal;
455
if (secretType ==
SecretType
.KeyVault)
802
private ProvisioningParameter AllocateParameter(IManifestExpressionProvider parameter,
SecretType
secretType =
SecretType
.None)
804
return parameter.AsProvisioningParameter(Infra, isSecure: secretType ==
SecretType
.Normal);