9 writes to CertificateBundlePath
Aspire.Hosting (1)
ApplicationModel\CertificateTrustExecutionConfigurationGatherer.cs (1)
101CertificateBundlePath = configurationContext.CertificateBundlePath,
Aspire.Hosting.Azure.Tests (1)
AzureCosmosDBExtensionsTests.cs (1)
733CertificateBundlePath = bundlePath,
Aspire.Hosting.Java.Tests (1)
AddJavaAppTests.cs (1)
919CertificateBundlePath = ReferenceExpression.Create($"/etc/ssl/aspire/bundle.p12"),
Aspire.Hosting.JavaScript.Tests (5)
AddBunAppTests.cs (2)
262CertificateBundlePath = bundle, 290CertificateBundlePath = ReferenceExpression.Create($"/etc/ssl/aspire/bundle.crt"),
AddDenoAppTests.cs (3)
2408CertificateBundlePath = bundle, 2437CertificateBundlePath = ReferenceExpression.Create($"/etc/ssl/aspire/bundle.crt"), 2465CertificateBundlePath = ReferenceExpression.Create($"/etc/ssl/aspire/bundle.crt"),
Aspire.Hosting.MongoDB.Tests (1)
MongoDBReplCommandTests.cs (1)
119CertificateBundlePath = ReferenceExpression.Create($"{bundlePath}"),
21 references to CertificateBundlePath
Aspire.Hosting (2)
ApplicationModel\CertificateTrustConfigurationCallbackAnnotation.cs (2)
38/// value provider such as <see cref="CertificateBundlePath"/> or <see cref="CertificateDirectoriesPath"/>. 57/// value provider such as <see cref="CertificateBundlePath"/> or <see cref="CertificateDirectoriesPath"/>.
Aspire.Hosting.Azure.CosmosDB (1)
AzureCosmosDBExtensions.cs (1)
204ctx.EnvironmentVariables["NODE_EXTRA_CA_CERTS"] = ctx.CertificateBundlePath;
Aspire.Hosting.JavaScript (4)
JavaScriptHostingExtensions.cs (4)
308ctx.EnvironmentVariables["NODE_EXTRA_CA_CERTS"] = ctx.CertificateBundlePath; 725ctx.EnvironmentVariables["NODE_EXTRA_CA_CERTS"] = ctx.CertificateBundlePath; 1103ctx.EnvironmentVariables["DENO_CERT"] = ctx.CertificateBundlePath; 1108ctx.EnvironmentVariables["OTEL_EXPORTER_OTLP_CERTIFICATE"] = ctx.CertificateBundlePath;
Aspire.Hosting.JavaScript.Tests (4)
AddDenoAppTests.cs (4)
2445Assert.Same(ctx.CertificateBundlePath, envVars["DENO_CERT"]); 2446Assert.Same(ctx.CertificateBundlePath, envVars["OTEL_EXPORTER_OTLP_CERTIFICATE"]); 2474Assert.Same(ctx.CertificateBundlePath, envVars["DENO_CERT"]); 2475Assert.Same(ctx.CertificateBundlePath, envVars["OTEL_EXPORTER_OTLP_CERTIFICATE"]);
Aspire.Hosting.MongoDB (2)
MongoDBBuilderExtensions.cs (2)
113context.Arguments.Add(context.CertificateBundlePath); 118context.EnvironmentVariables["ASPIRE_MONGODB_REPL_CA_FILE"] = context.CertificateBundlePath;
Aspire.Hosting.MongoDB.Tests (3)
MongoDBReplCommandTests.cs (3)
130Assert.Equal(["--tlsCAFile", context.CertificateBundlePath], context.Arguments); 131Assert.Equal(bundlePath, await context.CertificateBundlePath.GetValueAsync(TestContext.Current.CancellationToken)); 143Assert.Same(context.CertificateBundlePath, variable.Value);
Aspire.Hosting.Python (3)
PythonAppResourceBuilderExtensions.cs (3)
417ctx.EnvironmentVariables["REQUESTS_CA_BUNDLE"] = ctx.CertificateBundlePath; 421ctx.EnvironmentVariables["CURL_CA_BUNDLE"] = ctx.CertificateBundlePath; 426ctx.EnvironmentVariables["OTEL_EXPORTER_OTLP_CERTIFICATE"] = ctx.CertificateBundlePath;
Aspire.Hosting.Redis (2)
RedisBuilderExtensions.cs (2)
162ctx.Arguments.Add(ctx.CertificateBundlePath); 421ctx.EnvironmentVariables[$"RI_REDIS_TLS_CA_PATH{counter}"] = ctx.CertificateBundlePath;