From 1adb3dc2bccbce87de2a24303a18ac2416e14ba0 Mon Sep 17 00:00:00 2001 From: Linlu Liu <43486346+lil131@users.noreply.github.com> Date: Tue, 14 Feb 2023 11:32:30 -0800 Subject: [PATCH] Update src/containerapp/azext_containerapp/_params.py Co-authored-by: Xing Zhou --- src/containerapp/azext_containerapp/_params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containerapp/azext_containerapp/_params.py b/src/containerapp/azext_containerapp/_params.py index 3e3e7dbdf7f..2fac01b8643 100644 --- a/src/containerapp/azext_containerapp/_params.py +++ b/src/containerapp/azext_containerapp/_params.py @@ -177,7 +177,7 @@ def load_arguments(self, _): c.argument('name', name_type, help='Name of the Container Apps Environment.') with self.argument_context('containerapp env certificate create') as c: - c.argument('hostname', options_list=['--hostname'], help='The custom domain name.') + c.argument('hostname', help='The custom domain name.') c.argument('certificate_name', options_list=['--certificate-name', '-c'], help='Name of the managed certificate which should be unique within the Container Apps environment.') c.argument('location', options_list=['--location'], help='Location of the managed certificate which can be different from the location of the Container Apps environment.') c.argument('validation_method', options_list=['--validation-method', '-v'], help='Validation method of custom domain ownership.')