Skip to content

Commit 28cc299

Browse files
authored
[Resource] Improve help text for Bicep output parameters to clarify output behavior
1 parent ab4a3fd commit 28cc299

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • src/azure-cli/azure/cli/command_modules/resource

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ def load_arguments(self, _):
123123
bicep_file_type = CLIArgumentType(options_list=['--file', '-f'], completer=FilesCompleter(), type=file_type)
124124
bicep_force_type = CLIArgumentType(options_list=['--force'], action='store_true')
125125
bicep_no_restore_type = CLIArgumentType(options_list=['--no-restore'], action='store_true')
126-
bicep_outdir_type = CLIArgumentType(options_list=['--outdir'], completer=DirectoriesCompleter(), help="When set, saves the output at the specified directory.")
127-
bicep_outfile_type = CLIArgumentType(options_list=['--outfile'], completer=FilesCompleter(), help="When set, saves the output as the specified file path.")
128-
bicep_stdout_type = CLIArgumentType(options_list=['--stdout'], action='store_true', help="When set, prints all output to stdout instead of corresponding files.")
126+
bicep_outdir_type = CLIArgumentType(options_list=['--outdir'], completer=DirectoriesCompleter(), help="When set, saves the output file at the specified directory. Only the given file is output; for bicepparam files, the referenced template is not included.")
127+
bicep_outfile_type = CLIArgumentType(options_list=['--outfile'], completer=FilesCompleter(), help="When set, saves the output as the specified file path. Only the given file is output; for bicepparam files, the referenced template is not included.")
128+
bicep_stdout_type = CLIArgumentType(options_list=['--stdout'], action='store_true', help="When set, prints all output to stdout instead of corresponding files. For bicepparam files, both the parameters and the referenced Bicep template are included in the output.")
129129
bicep_indent_kind_type = CLIArgumentType(options_list=['--indent-kind'], arg_type=get_enum_type(["Space", "Tab"]), help="Set indentation kind.")
130130
bicep_indent_size_type = CLIArgumentType(options_list=['--indent-size'], help="Number of spaces to indent with (Only valid with --indent-kind set to Space).")
131131
bicep_insert_final_newline_type = CLIArgumentType(options_list=['--insert-final-newline'], action='store_true', help="Insert a final newline.")

0 commit comments

Comments
 (0)