Pull request #12: Changing F parameter to optional
Merge in OPAPM/coco_apm_terraform_onboarding from template to master * commit 'a1704dbaabc9371d817f746047dbaa497de97de9': Changing readme Changing F parameter to optionalCD_TS-CMS
commit
2eb63cd540
|
|
@ -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("-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('-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()
|
args = parser.parse_args()
|
||||||
|
|
||||||
#Config options for onboarding. Will be extended with other configuration options in future
|
#Config options for onboarding. Will be extended with other configuration options in future
|
||||||
|
|
|
||||||
|
|
@ -56,8 +56,7 @@ For more information about adjusting tf files to your need please follow:
|
||||||
-C COMPASSID, --compassid COMPASSID
|
-C COMPASSID, --compassid COMPASSID
|
||||||
Your compass_id (default: None)
|
Your compass_id (default: None)
|
||||||
-F FEATURES, --features FEATURES
|
-F FEATURES, --features FEATURES
|
||||||
Comma separated additional features. Possible options are: custom_service, notification, processgroup_naming, service_naming (default:
|
Comma separated additional features. Possible options are: custom_service,processgroup_naming,service_naming (default: None)
|
||||||
None)
|
|
||||||
|
|
||||||
# Files
|
# Files
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue