Skip to content

Commit 81a8e1f

Browse files
committed
docs(running-deis-without-ceph): s3 region var
Adding a bash var for S3 region in the example code block under "configure registry". I think this will avoid future implementers from accidentally pasting in the sample "eu-west-1" s3region value into the "deisctl config registry" statement. It tripped up yours truly, at least!
1 parent 3838a0a commit 81a8e1f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

docs/managing_deis/running-deis-without-ceph.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,12 @@ The :ref:`registry` component won't start until it's configured with an S3 store
123123
$ BUCKET=MYS3BUCKET
124124
$ AWS_ACCESS_KEY=something
125125
$ AWS_SECRET_KEY=something
126+
$ AWS_S3_REGION=some-aws-region #(e.g., us-west-1)
126127
$ deisctl config registry set s3bucket=${BUCKET} \
127128
bucketName=${BUCKET} \
128129
s3accessKey=${AWS_ACCESS_KEY} \
129130
s3secretKey=${AWS_SECRET_KEY} \
130-
s3region=eu-west-1 \
131+
s3region=${AWS_S3_REGION} \
131132
s3path=/ \
132133
s3encrypt=false \
133134
s3secure=false

0 commit comments

Comments
 (0)