π Solution Landing Page | π Solution Implementation Guide | π§ Feature request | π Bug Report
Note: If you want to use the solution without building from source, navigate to Solution Landing Page
Site wrapper to absorb and control user traffic flowing into smaller web sites.
- Install/update to Python 3.x
- Install the AWS Command Line Interface (CLI)
- Create a Python virtual environment using requirements.txt and activate it
- Configure the bucket name of your target Amazon S3 distribution bucket
- Configure the bucket name of your target Amazon S3 distribution bucket
export DIST_OUTPUT_BUCKET=<MY-BUCKET-NAME> # bucket where customized code will reside
export SOLUTION_NAME=my-solution-name
export VERSION=my-version # version number for the customized code
Note: You would have to create an S3 bucket with the prefix '-'; is where you are testing the customized solution. Also, the assets in bucket should be publicly accessible.
- Now build the distributable:
cd deployment
chmod +x ./build-s3-dist.sh
./build-s3-dist.sh $DIST_OUTPUT_BUCKET $SOLUTION_NAME $VERSION
- Deploy the distributable to an Amazon S3 bucket in your account. The head-bucket command verifies that your account owns the bucket. Note: you must have the AWS Command Line Interface installed.
aws s3api head-bucket --bucket <MY-BUCKET-NAME>-<AWS-REGION> --expected-bucket-owner <AWS-ACCOUNT-ID>
aws s3 sync regional-s3-assets/ s3://<MY-BUCKET-NAME>-<AWS-REGION>/$SOLUTION_NAME/$VERSION/
- Get the link of the solution template uploaded to your Amazon S3 bucket.
- Deploy the solution to your account by launching a new AWS CloudFormation stack using the link of the solution template in Amazon S3.
- Some packages require a build before unit tests will run
- Install the common package into the virtual envronment before running
cd ./deployment
chmod +x ./run-unit-tests.sh
./run-unit-tests.sh
βββ deployment
β βββ Dockerfile [ Used by docker_build script for building jwcrypto library ]
β βββ virtual-waiting-room-on-aws-api-gateway-cw-logs-role.json [ Base template for CloudWatch Logs role ]
β βββ virtual-waiting-room-on-aws-authorizers.json [ Base template for authorizers ]
β βββ virtual-waiting-room-on-aws-getting-started.json [ Nested template for new users ]
β βββ virtual-waiting-room-on-aws-openid.json [ Base template for Open ID ]
β βββ virtual-waiting-room-on-aws-sample-inlet-strategy.json [ Base template for sample inlet strategy]
β βββ virtual-waiting-room-on-aws-sample.json [ Base template for sample site ]
β βββ virtual-waiting-room-on-aws-swagger-private-api.json [ Swagger file for private API ]
β βββ virtual-waiting-room-on-aws-swagger-public-api.json [ Swagger file for public API ]
β βββ virtual-waiting-room-on-aws.json [ Base template for core API ]
β βββ build-s3-dist.sh [ Script for building distributables and preparing the CloudFormation templates ]
β βββ deploy.sh [ Script for building distributables and preparing the CloudFormation templates ]
β βββ docker_build.sh [ Script for building jwcrypto library ]
β βββ global-s3-assets [ Directory for writing out CloudFormation during local build ]
β βββ regional-s3-assets [ Directory for writing out CloudFormation during local build ]
β βββ requirements.txt [ System requirements for local builds ]
β βββ run-unit-tests.sh [ Script to run unit tests ]
βββ docs
β βββ developer-guide.md [ Waiting room developer guide ]
β βββ install-guide.md [ Waiting room installation guide ]
β βββ physical-view.drawio
β βββ physical-view.jpg
β βββ sequence-diagrams.drawio
β βββ software-architecture.md
βββ source
βββ control-panel [ Source files for sample control panel ]
βββ core-api [ Source files for core API ]
βββ core-api-authorizers-sample [ Source files Authorizers ]
βββ openid-waitingroom [ Source files for Open ID ]
βββ sample-inlet-strategies [ Source files for inlet strategies ]
βββ sample-waiting-room-site [ Source files for sample waiting room ]
βββ shared [ Source files for shared library ]
βββ token-authorizer [ Source files for token authorizer ]
βββ tools [ Source files for tools and helper scripts ]
This solution collects anonymized operational metrics to help AWS improve the quality of features of the solution. For more information, including how to disable this capability, please see the implementation guide.
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. SPDX-License-Identifier: Apache-2.0