You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Aspire.Hosting.Azure.AppContainers/ContainerAppExtensions.cs
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -16,22 +16,22 @@ namespace Aspire.Hosting;
16
16
publicstaticclassContainerAppExtensions
17
17
{
18
18
/// <summary>
19
-
/// Configures the custom domain for the container app.
19
+
/// Adds a custom domain to the container app.
20
20
/// </summary>
21
-
/// <param name="app">The container app resource to configure for custom domain usage.</param>
21
+
/// <param name="app">The container app resource to add a custom domain.</param>
22
22
/// <param name="customDomain">A resource builder for a parameter resource capturing the name of the custom domain.</param>
23
23
/// <param name="certificateName">A resource builder for a parameter resource capturing the name of the certficate configured in the Azure Portal.</param>
24
24
/// <exception cref="ArgumentException">Throws if the container app resource is not parented to a <see cref="AzureResourceInfrastructure"/>.</exception>
/// simplifies the process of assigning a custom domain to a container app resource when it is deployed. It has no impact on local development.</para>
28
-
/// <para>The <see cref="ConfigureCustomDomain(ContainerApp, IResourceBuilder{ParameterResource}, IResourceBuilder{ParameterResource})"/> method is used
28
+
/// <para>The <see cref="AddCustomDomain(ContainerApp, IResourceBuilder{ParameterResource}, IResourceBuilder{ParameterResource})"/> method is used
29
29
/// in conjunction with the <see cref="AzureContainerAppContainerExtensions.PublishAsAzureContainerApp{T}(IResourceBuilder{T}, Action{AzureResourceInfrastructure, ContainerApp})"/>
30
30
/// callback. Assigning a custom domain to a container app resource is a multi-step process and requires multiple deployments.</para>
/// two arguments which are parameter resource builders. The first is a parameter that represents the custom domain and the second is a parameter that
33
33
/// represents the name of the managed certificate provisioned via the Azure Portal</para>
34
-
/// <para>When deploying with custom domains configured for the first time leave the <paramref name="certificateName"/> parameter empty (when prompted
34
+
/// <para>When deploying with custom domains added for the first time leave the <paramref name="certificateName"/> parameter empty (when prompted
35
35
/// by the Azure Developer CLI). Once the applicatio is deployed acucessfully access to the Azure Portal to bind the custom domain to a managed SSL
36
36
/// certificate. Once the certificate is successfully provisioned, subsequent deployments of the application can use this certificate name when the
37
37
/// <paramref name="certificateName"/> is prompted.</para>
@@ -40,7 +40,7 @@ public static class ContainerAppExtensions
40
40
/// </remarks>
41
41
/// <example>
42
42
/// This example shows declaring two parameters to capture the custom domain and certificate name and
43
-
/// passing them to the <see cref="ConfigureCustomDomain(ContainerApp, IResourceBuilder{ParameterResource}, IResourceBuilder{ParameterResource})"/>
43
+
/// passing them to the <see cref="AddCustomDomain(ContainerApp, IResourceBuilder{ParameterResource}, IResourceBuilder{ParameterResource})"/>
44
44
/// method via the <see cref="AzureContainerAppContainerExtensions.PublishAsAzureContainerApp{T}(IResourceBuilder{T}, Action{AzureResourceInfrastructure, ContainerApp})"/>
45
45
/// extension method.
46
46
/// <code lang="C#">
@@ -50,16 +50,16 @@ public static class ContainerAppExtensions
0 commit comments