Skip to content

Commit 092f1b7

Browse files
authored
[Containerapp] Fix #29238: az containerapp secret set: Add description about identityref for parameter --secrets (#30418)
1 parent 29598f1 commit 092f1b7

File tree

1 file changed

+1
-1
lines changed
  • src/azure-cli/azure/cli/command_modules/containerapp

1 file changed

+1
-1
lines changed

src/azure-cli/azure/cli/command_modules/containerapp/_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def load_arguments(self, _):
307307
c.argument('max_age', nargs='?', const='', validator=validate_cors_max_age, help="The maximum age of the allowed origin in seconds. Only postive integer or empty string are allowed. Empty string resets max_age to null.")
308308

309309
with self.argument_context('containerapp secret') as c:
310-
c.argument('secrets', nargs='+', options_list=['--secrets', '-s'], help="A list of secret(s) for the container app. Space-separated values in 'key=value' or 'key=keyvaultref:keyvaulturl,identityref:identity' format (where 'key' cannot be longer than 20 characters).")
310+
c.argument('secrets', nargs='+', options_list=['--secrets', '-s'], help="A list of secret(s) for the container app. Space-separated values in 'key=value' or 'key=keyvaultref:keyvaulturl,identityref:identity' format (where 'key' cannot be longer than 20 characters. For 'identityref', Use 'system' for a system-defined identity or a resource id for a user-defined identity).")
311311
c.argument('secret_name', help="The name of the secret to show.")
312312
c.argument('secret_names', nargs='+', help="A list of secret(s) for the container app. Space-separated secret values names.")
313313
c.argument('show_values', help='Show the secret values.')

0 commit comments

Comments
 (0)