AzureContainerAppsInfrastructure.cs (7)
491if (secretType != SecretType.None)
520SecretType.None => new ContainerAppEnvironmentVariable { Name = kv.Key, Value = argValue },
616private async Task<(object, SecretType)> ProcessValueAsync(object value, DistributedApplicationExecutionContext executionContext, CancellationToken cancellationToken, SecretType secretType = SecretType.None, object? parent = null)
691var finalSecretType = SecretType.None;
697if (secret != SecretType.None)
756private ProvisioningParameter AllocateParameter(IManifestExpressionProvider parameter, Type? type = null, SecretType secretType = SecretType.None)
772_provisioningParameters[parameterName] = provisioningParameter = new ProvisioningParameter(parameterName, type ?? typeof(string)) { IsSecure = secretType != SecretType.None };