Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ARO-12200 include expected values for MIWI arguments in az aro create usage #4050

Merged
merged 4 commits into from
Jan 20, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/az/aro/azext_aro/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,12 @@ def load_arguments(self, _):
options_list=['--enable-managed-identity', '--enable-mi'],
validator=validate_enable_managed_identity)
c.argument('platform_workload_identities', arg_group='Identity', is_preview=True,
help='Assign a platform workload identity used within the cluster',
help='Assign a platform workload identity used within the cluster. Requires two values: the use inside the cluster and the user assigned identity.',
yithian marked this conversation as resolved.
Show resolved Hide resolved
options_list=['--assign-platform-workload-identity', '--assign-platform-wi'],
validator=validate_platform_workload_identities(isCreate=True),
action=AROPlatformWorkloadIdentityAddAction, nargs='+')
c.argument('mi_user_assigned', arg_group='Identity', is_preview=True,
help='Set the user managed identity on the cluster.',
help='Set the user managed identity on the cluster. Value must be a user assigned identity.',
options_list=['--mi-user-assigned', '--assign-cluster-identity'],
validator=validate_cluster_identity)

Expand Down
Loading