Skip to content

Commit

Permalink
Update start_broker.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinu Somayaji committed Sep 25, 2018
1 parent e8f37a4 commit 704dc0e
Showing 1 changed file with 17 additions and 12 deletions.
29 changes: 17 additions & 12 deletions scripts/start_broker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,20 @@
# Script to start the broker run by Dockerfile
#
aws-servicebroker \
-insecure \
-alsologtostderr \
-region ${AWS_DEFAULT_REGION:=us-west-2} \
-s3Bucket ${S3_BUCKET:=awsservicebrokeralpha} \
-s3Key ${BUCKET_PREFIX:=pcf/templates} \
-s3Region ${BUCKET_REGION:=us-west-2} \
-port ${PORT:=3199} \
-tableName ${DYNAMO_TABLE:=awssb} \
-enableBasicAuth \
-basicAuthUser ${SECURITY_USER_NAME:=admin} \
-basicAuthPass ${SECURITY_USER_PASSWORD} \
-v=${VERBOSE_LEVEL:=4}
-logtostderr \
-brokerId=${BROKER_ID:=awsservicebroker} \
-enableBasicAuth=true \
-basicAuthUser=${SECURITY_USER_NAME:=admin} \
-basicAuthPass=${SECURITY_USER_PASSWORD} \
-insecure=${INSECURE:=false} \
-port=${PORT:=3199} \
-region=${TABLE_REGION:=us-east-1} \
-s3Bucket=${S3_BUCKET:=awsservicebroker} \
-s3Key=${S3_KEY:=templates/latest/} \
-s3Region=${S3_REGION:=us-east-1} \
-tableName=${TABLE_NAME:=aws-service-broker} \
-templateFilter=${TEMPLATE_FILTER:=-main.yaml} \
-tlsCert=${TLS_CERT} \
-tlsKey=${TLS_KEY} \
-prescribeOverrides=${PRESCRIBE:=true} \
-v=${VERBOSITY:=5}

0 comments on commit 704dc0e

Please sign in to comment.