5 writes to TlsEnabled
Aspire.Hosting (1)
ApplicationModel\EndpointUpdateContext.cs (1)
108set => _endpointAnnotation.TlsEnabled = value;
Aspire.Hosting.Azure.Tests (1)
AzureContainerAppsTests.cs (1)
3018redis.WithEndpoint("tcp", e => e.TlsEnabled = true);
Aspire.Hosting.Redis (1)
RedisBuilderExtensions.cs (1)
199e.TlsEnabled = true;
Aspire.Hosting.Tests (2)
ConditionalReferenceExpressionTests.cs (2)
142TlsEnabled = true 178annotation.TlsEnabled = true;
14 references to TlsEnabled
Aspire.Hosting (6)
ApplicationModel\EndpointReference.cs (3)
86/// Once the annotation exists, this property delegates to <see cref="EndpointAnnotation.TlsEnabled"/>. 88public bool TlsEnabled => Exists && EndpointAnnotation.TlsEnabled; 167/// <see cref="EndpointAnnotation.TlsEnabled"/> is <see langword="true"/> on this endpoint, or to
ApplicationModel\EndpointUpdateContext.cs (1)
107get => _endpointAnnotation.TlsEnabled;
ApplicationModel\IComputeEnvironmentResource.cs (1)
63EndpointProperty.TlsEnabled => ReferenceExpression.Create($"{(endpoint.TlsEnabled ? bool.TrueString : bool.FalseString)}"),
ProjectResourceBuilderExtensions.cs (1)
573if (!ctx.Resource.Annotations.OfType<EndpointAnnotation>().Any(e => e.TlsEnabled))
Aspire.Hosting.Azure.AppContainers (3)
AzureContainerAppEnvironmentResource.cs (1)
373var tlsEnabled = string.Equals(scheme, "https", StringComparison.OrdinalIgnoreCase) || endpoint.TlsEnabled;
ContainerAppContext.cs (2)
231_endpointMapping[endpoint.Name] = new(scheme, NormalizedContainerAppName, port, targetPort, true, httpIngress.External, endpoint.TlsEnabled); 263_endpointMapping[endpoint.Name] = new(endpoint.UriScheme, NormalizedContainerAppName, resolved.ExposedPort.Value ?? g.Port.Value, g.Port.Value, false, g.External, endpoint.TlsEnabled);
Aspire.Hosting.Azure.AppService (1)
AzureAppServiceEnvironmentResource.cs (1)
525var tlsEnabled = string.Equals(scheme, "https", StringComparison.OrdinalIgnoreCase) || endpoint.TlsEnabled;
Aspire.Hosting.Keycloak.Tests (1)
KeycloakResourceBuilderTests.cs (1)
87Assert.True(primaryEndpoint.TlsEnabled);
Aspire.Hosting.Radius (1)
RadiusEnvironmentResource.cs (1)
178EndpointProperty.TlsEnabled => ReferenceExpression.Create($"{(endpoint.TlsEnabled ? bool.TrueString : bool.FalseString)}"),
Aspire.Hosting.Redis (1)
RedisResource.cs (1)
70/// This property proxies through to <see cref="EndpointAnnotation.TlsEnabled"/> on the
Aspire.Hosting.Redis.Tests (1)
AddRedisTests.cs (1)
881Assert.True(endpoint.TlsEnabled);