From f7f9c309d1e66376d88b2a2e9e6867cc41a7f767 Mon Sep 17 00:00:00 2001 From: SooLee Date: Thu, 12 Mar 2020 16:15:56 -0400 Subject: [PATCH] minor addition to doc --- docs/execution_json.rst | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/docs/execution_json.rst b/docs/execution_json.rst index e744ad801..24f76431d 100644 --- a/docs/execution_json.rst +++ b/docs/execution_json.rst @@ -493,16 +493,30 @@ The ``config`` field describes execution configuration. ``spot_instance`` is set to ```True`` :availability_zone: - - specify availability zone (by default, availability zone is randomly selected within region by AWS) - - e.g. ``us-east-1a`` - - optional (no default) + - specify availability zone (by default, availability zone is randomly selected within region by AWS) + - e.g. ``us-east-1a`` + - optional (no default) :security_group: - - specify security group. This feature may be useful to launch an instance to a specific VPC. - - e.g. ``sg-00151073fdf57305f`` - - optional (no default) + - specify security group. This feature may be useful to launch an instance to a specific VPC. + - e.g. ``sg-00151073fdf57305f`` + - optional (no default) + - This feature is supported in version `0.15.6`. If an older version has been used, redeploy + ``run_task_awsem`` to enable this feature, after installing ``0.9.0`` as below. + + :: + + tibanna deploy_core -n run_task_awsem -g -s :subnet: - - specify subnet ID. This feature may be useful to launch an instance to a specific VPC. If you don't have default VPC, subnet must be specified. - - e.g. ``subnet-efb1b3c4`` - - optional (no default) + - specify subnet ID. This feature may be useful to launch an instance to a specific VPC. If you don't have default VPC, subnet must be specified. + - e.g. ``subnet-efb1b3c4`` + - optional (no default) + - This feature is supported in version `0.15.6`. If an older version has been used, redeploy + ``run_task_awsem`` to enable this feature, after installing ``0.9.0`` as below. + + :: + + tibanna deploy_core -n run_task_awsem -g -s + +