Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Brings consistency to the TARGET_GROUP_LIST variable documentation #72

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion load-balancing/elb-v2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ To use these scripts in your own application:
1. Copy the `.sh` files in this directory into your application source.
1. Edit your application's `appspec.yml` to run `deregister_from_elb.sh` on the ApplicationStop event,
and `register_with_elb.sh` on the ApplicationStart event.
1. Edit `common_functions.sh` to set `TARGET_LIST` to contain the name(s) of the Target Group your deployment group is a part of. Make sure the entries in TARGET_LIST are separated by space.
1. Edit `common_functions.sh` to set `TARGET_GROUP_LIST` to contain the name(s) of the Target Group your deployment group is a part of. Make sure the entries in `TARGET_GROUP_LIST` are separated by space.
1. Edit `common_functions.sh` to set `PORT` to the port number your application is running at (if it's different from the default port number set in Target Group)
1. Deploy!
4 changes: 2 additions & 2 deletions load-balancing/elb-v2/common_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.

# TARGET_LIST defines which target groups behind Load Balancer this instance should be part of.
# The elements in TARGET_LIST should be seperated by space.
# TARGET_GROUP_LIST defines which target groups behind Load Balancer this instance should be part of.
# The elements in TARGET_GROUP_LIST should be seperated by space.
TARGET_GROUP_LIST=""

# PORT defines which port the application is running at.
Expand Down