From e3d3f1cb9941dcf56e690ff6d4e6a423a507accf Mon Sep 17 00:00:00 2001 From: Tom Plant Date: Fri, 27 Mar 2026 13:22:29 +1100 Subject: [PATCH] Fix typo in containerapp registry_identity help text --- src/azure-cli/azure/cli/command_modules/containerapp/_params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/containerapp/_params.py b/src/azure-cli/azure/cli/command_modules/containerapp/_params.py index dbd1516cbed..b6c5c68ebce 100644 --- a/src/azure-cli/azure/cli/command_modules/containerapp/_params.py +++ b/src/azure-cli/azure/cli/command_modules/containerapp/_params.py @@ -109,7 +109,7 @@ def load_arguments(self, _): c.argument('registry_pass', validator=validate_registry_pass, options_list=['--registry-password'], help="The password to log in to container registry. If stored as a secret, value must start with \'secretref:\' followed by the secret name.") c.argument('registry_user', validator=validate_registry_user, options_list=['--registry-username'], help="The username to log in to container registry.") c.argument('secrets', nargs='*', options_list=['--secrets', '-s'], help="A list of secret(s) for the container app. Space-separated values in 'key=value' format.") - c.argument('registry_identity', help="A Managed Identity to authenticate with the registry server instead of username/password. Use a resource ID or 'system' for user-defined and system-defined identities, respectively. The registry must be an ACR. If possible, an 'acrpull' role assignemnt will be created for the identity automatically.") + c.argument('registry_identity', help="A Managed Identity to authenticate with the registry server instead of username/password. Use a resource ID or 'system' for user-defined and system-defined identities, respectively. The registry must be an ACR. If possible, an 'acrpull' role assignment will be created for the identity automatically.") # Ingress with self.argument_context('containerapp', arg_group='Ingress') as c: