diff --git a/src/Aspire.Hosting.Azure.AppContainers/AzureContainerAppEnvironmentResource.cs b/src/Aspire.Hosting.Azure.AppContainers/AzureContainerAppEnvironmentResource.cs index ce17e9813b3..276cce3e9f6 100644 --- a/src/Aspire.Hosting.Azure.AppContainers/AzureContainerAppEnvironmentResource.cs +++ b/src/Aspire.Hosting.Azure.AppContainers/AzureContainerAppEnvironmentResource.cs @@ -16,42 +16,42 @@ public class AzureContainerAppEnvironmentResource(string name, Action /// Gets the unique identifier of the Container App Environment. /// - public BicepOutputReference ContainerAppEnvironmentId => new("AZURE_CONTAINER_APPS_ENVIRONMENT_ID", this); + private BicepOutputReference ContainerAppEnvironmentId => new("AZURE_CONTAINER_APPS_ENVIRONMENT_ID", this); /// /// Gets the default domain associated with the Container App Environment. /// - public BicepOutputReference ContainerAppDomain => new("AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN", this); + private BicepOutputReference ContainerAppDomain => new("AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN", this); /// /// Gets the URL endpoint of the associated Azure Container Registry. /// - public BicepOutputReference ContainerRegistryUrl => new("AZURE_CONTAINER_REGISTRY_ENDPOINT", this); + private BicepOutputReference ContainerRegistryUrl => new("AZURE_CONTAINER_REGISTRY_ENDPOINT", this); /// /// Gets the managed identity ID associated with the Azure Container Registry. /// - public BicepOutputReference ContainerRegistryManagedIdentityId => new("AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID", this); + private BicepOutputReference ContainerRegistryManagedIdentityId => new("AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID", this); /// /// Gets the unique identifier of the Log Analytics workspace. /// - public BicepOutputReference LogAnalyticsWorkspaceId => new("AZURE_LOG_ANALYTICS_WORKSPACE_ID", this); + private BicepOutputReference LogAnalyticsWorkspaceId => new("AZURE_LOG_ANALYTICS_WORKSPACE_ID", this); /// /// Gets the principal name of the managed identity. /// - public BicepOutputReference PrincipalName => new("MANAGED_IDENTITY_NAME", this); + private BicepOutputReference PrincipalName => new("MANAGED_IDENTITY_NAME", this); /// /// Gets the principal ID of the managed identity. /// - public BicepOutputReference PrincipalId => new("MANAGED_IDENTITY_PRINCIPAL_ID", this); + private BicepOutputReference PrincipalId => new("MANAGED_IDENTITY_PRINCIPAL_ID", this); /// /// Gets the name of the Container App Environment. /// - public BicepOutputReference ContainerAppEnvironmentName => new("AZURE_CONTAINER_APPS_ENVIRONMENT_NAME", this); + private BicepOutputReference ContainerAppEnvironmentName => new("AZURE_CONTAINER_APPS_ENVIRONMENT_NAME", this); internal Dictionary VolumeNames { get; } = [];