From 063f21ed1d2559ad8903e3ee89107d656a8f96f9 Mon Sep 17 00:00:00 2001 From: Ben Nelson Date: Wed, 8 Jun 2016 17:29:39 -0600 Subject: [PATCH] update some documentation Change-Id: I4120b2348ffa0d76361786762509c10645f429c3 Reviewed-on: https://gerrit.instructure.com/82013 Reviewed-by: Ryan Shaw Reviewed-by: Cody Cutrer Product-Review: Simon Williams QA-Review: Simon Williams Tested-by: Jenkins --- doc/live_events.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/live_events.md b/doc/live_events.md index 1e60c1d8211..75b48b59f04 100644 --- a/doc/live_events.md +++ b/doc/live_events.md @@ -15,16 +15,16 @@ cli installed, and run the following command to create a stream (with canvas running): ```bash -AWS_ACCESS_KEY_ID=key AWS_SECRET_ACCESS_KEY=secret aws --endpoint-url http://kinesis.docker/ kinesis create-stream --stream-name=mystream --shard-count=1 +AWS_ACCESS_KEY_ID=key AWS_SECRET_ACCESS_KEY=secret aws --endpoint-url http://kinesis.docker/ kinesis create-stream --stream-name=mystream --shard-count=1 --region=us-east-1 ``` -Once the stream is created, configure your Canvas (at /plugins) to use +Once the stream is created, configure your Canvas (by visiting /plugins on your Canvas install) to use it: | Setting Name | Value | | --------------------- | ------------------- | | Kinesis Stream Name | mystream | -| AWS Region | (leave blank) | +| AWS Region | us-east-1 | | AWS Endpoint | http://kinesis:4567 | | AWS Access Key ID | key | | AWS Secret Access Key | secret | @@ -33,5 +33,5 @@ Restart Canvas, and events should start flowing to your kinesis stream. You can view the stream with the `tail_kinesis` tool: ```bash -fig run --rm web script/tail_kinesis kinesis 4567 mystream +docker-compose run --rm web script/tail_kinesis kinesis 4567 mystream ```