From 76fddd356acc4a95e0fcccaf00d9e9ddc7476661 Mon Sep 17 00:00:00 2001 From: Bin Du Date: Sun, 14 Dec 2025 17:35:13 -0800 Subject: [PATCH] chore: update acr network ip_address help text to include ipv6 address --- src/azure-cli/azure/cli/command_modules/acr/_params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/acr/_params.py b/src/azure-cli/azure/cli/command_modules/acr/_params.py index fbbffdf384c..69e55bca005 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/_params.py +++ b/src/azure-cli/azure/cli/command_modules/acr/_params.py @@ -448,7 +448,7 @@ def load_arguments(self, _): # pylint: disable=too-many-statements with self.argument_context('acr network-rule') as c: c.argument('subnet', help='Name or ID of subnet. If name is supplied, `--vnet-name` must be supplied.', deprecate_info=c.deprecate(hide=True)) c.argument('vnet_name', help='Name of a virtual network.', deprecate_info=c.deprecate(hide=True)) - c.argument('ip_address', help='IPv4 address or CIDR range.') + c.argument('ip_address', help='IPv4/IPv6 address or CIDR range.') with self.argument_context('acr check-health') as c: c.argument('ignore_errors', options_list=['--ignore-errors'], help='Provide all health checks, even if errors are found', action='store_true', required=False)