Changing F parameter to optional

CD_ASBC-B2VAUTH
Patryk Gudalewicz 2023-01-10 09:41:45 +01:00
parent 0b40f91b82
commit 638c5b5065
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ parser = argparse.ArgumentParser(description="Generate predefined Dynatrace conf
parser.add_argument("-A", "--appname", type=str,required=True, help="Your app_name")
parser.add_argument('-C', "--compassid", type=str,required=True, help="Your compass_id")
parser.add_argument('-F', "--features", type=str,required=True, help="Comma separated additional features. Possible options are: custom_service, processgroup_naming, service_naming")
parser.add_argument('-F', "--features", type=str,required=False, help="Comma separated additional features. Possible options are: custom_service, processgroup_naming, service_naming")
args = parser.parse_args()
#Config options for onboarding. Will be extended with other configuration options in future