├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── deployment ├── build-s3-dist.sh ├── ecr │ ├── README.md │ └── prebid-server │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── bootstrap.sh │ │ ├── current-config │ │ └── README.md │ │ ├── default-config │ │ ├── README.md │ │ ├── entrypoint.sh │ │ ├── prebid-analytics-logging.xml │ │ ├── prebid-config.yaml │ │ └── prebid-logging.xml │ │ ├── docker-build-config.json │ │ ├── extra-modules │ │ └── log-module-reporter │ │ │ ├── config │ │ │ └── AnalyticsConfiguration.java │ │ │ ├── psdoa │ │ │ ├── PsdoaAnalyticsReporter.java │ │ │ └── model │ │ │ │ ├── PsdoaBid.java │ │ │ │ ├── PsdoaBidRequest.java │ │ │ │ ├── PsdoaBidResponse.java │ │ │ │ ├── PsdoaBidderStatus.java │ │ │ │ ├── PsdoaEvent.java │ │ │ │ ├── PsdoaEventType.java │ │ │ │ └── PsdoaUserSync.java │ │ │ └── test │ │ │ └── PsdoaAnalyticsReporterTest.java │ │ ├── stored_accounts │ │ └── README.md │ │ ├── stored_impressions │ │ └── README.md │ │ ├── stored_requests │ │ └── README.md │ │ └── stored_responses │ │ └── README.md ├── run-unit-tests.sh └── venv_check.py ├── docs └── prebid-server-deployment-on-aws.png ├── solution-manifest.yaml └── source ├── .coveragerc ├── cdk_solution_helper_py ├── CHANGELOG.md ├── README.md ├── helpers_cdk │ ├── aws_solutions │ │ └── cdk │ │ │ ├── __init__.py │ │ │ ├── aspects.py │ │ │ ├── aws_lambda │ │ │ ├── __init__.py │ │ │ ├── cfn_custom_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── resource_hash │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── hash.py │ │ │ │ │ └── src │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── custom_resources │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── hash.py │ │ │ │ │ │ └── requirements.txt │ │ │ │ ├── resource_name │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── name.py │ │ │ │ │ └── src │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── custom_resources │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── name.py │ │ │ │ │ │ └── requirements.txt │ │ │ │ └── solutions_metrics │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── metrics.py │ │ │ │ │ └── src │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── custom_resources │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── metrics.py │ │ │ │ │ └── requirements.txt │ │ │ ├── environment.py │ │ │ ├── environment_variable.py │ │ │ ├── java │ │ │ │ ├── __init__.py │ │ │ │ ├── bundling.py │ │ │ │ └── function.py │ │ │ ├── layers │ │ │ │ ├── __init__.py │ │ │ │ └── aws_lambda_powertools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── layer.py │ │ │ │ │ └── requirements │ │ │ │ │ └── requirements.txt │ │ │ └── python │ │ │ │ ├── __init__.py │ │ │ │ ├── bundling.py │ │ │ │ ├── function.py │ │ │ │ ├── lambda_alarm.py │ │ │ │ └── layer.py │ │ │ ├── cfn_nag.py │ │ │ ├── context.py │ │ │ ├── helpers │ │ │ ├── __init__.py │ │ │ ├── copytree.py │ │ │ ├── loader.py │ │ │ └── logger.py │ │ │ ├── interfaces.py │ │ │ ├── mappings.py │ │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ └── build_s3_cdk_dist.py │ │ │ ├── stack.py │ │ │ ├── stepfunctions │ │ │ ├── __init__.py │ │ │ ├── solution_fragment.py │ │ │ └── solutionstep.py │ │ │ ├── synthesizers.py │ │ │ └── tools │ │ │ ├── __init__.py │ │ │ └── cleaner.py │ └── setup.py ├── helpers_common │ ├── aws_solutions │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── helpers.py │ │ │ └── logging.py │ │ └── extended │ │ │ └── resource_lookup.py │ └── setup.py └── requirements-dev.txt ├── infrastructure ├── __init__.py ├── app.py ├── aws_lambda_layers │ ├── __init__.py │ ├── aws_solutions │ │ ├── __init__.py │ │ ├── layer.py │ │ └── requirements │ │ │ └── requirements.txt │ ├── datasync_s3_layer │ │ ├── __init__.py │ │ └── python │ │ │ └── datasync_reports │ │ │ └── reports.py │ └── metrics_layer │ │ ├── __init__.py │ │ └── python │ │ ├── __init__.py │ │ └── cloudwatch_metrics │ │ ├── __init__.py │ │ └── metrics.py ├── cdk.json ├── custom_resources │ ├── __init__.py │ ├── artifacts_bucket_lambda │ │ ├── __init__.py │ │ ├── files │ │ │ ├── __init__.py │ │ │ └── glue │ │ │ │ ├── __init__.py │ │ │ │ └── metrics_glue_script.py │ │ ├── requirements.txt │ │ └── upload_files.py │ ├── cloudwatch_metrics │ │ ├── __init__.py │ │ ├── cloudwatch_metrics_report.py │ │ └── requirements.txt │ ├── docker_configs_bucket_lambda │ │ ├── __init__.py │ │ ├── requirements.txt │ │ └── upload_docker_config.py │ ├── enable_access_logs │ │ ├── __init__.py │ │ ├── enable_access_logs.py │ │ └── requirements.txt │ ├── header_secret_lambda │ │ ├── __init__.py │ │ ├── header_secret_gen.py │ │ └── requirements.txt │ ├── operational_metrics │ │ ├── __init__.py │ │ ├── ops_metrics.py │ │ └── requirements.txt │ ├── prebid_configs_lambda │ │ ├── __init__.py │ │ ├── requirements.txt │ │ └── upload_prebid_configs.py │ ├── prefix_id_lambda │ │ ├── __init__.py │ │ ├── get_prefix_id.py │ │ └── requirements.txt │ ├── vpc_eni_lambda │ │ ├── __init__.py │ │ ├── delete_lambda_eni.py │ │ └── requirements.txt │ └── waf_webacl_lambda │ │ ├── __init__.py │ │ ├── create_waf_webacl.py │ │ ├── delete_waf_webacl.py │ │ └── requirements.txt ├── prebid_server │ ├── __init__.py │ ├── alb_access_logs_construct.py │ ├── alb_entry_deployment.py │ ├── app_registry_aspect.py │ ├── cache_construct.py │ ├── cache_lambda │ │ ├── cache_access.py │ │ └── requirements.txt │ ├── cloudfront_entry_deployment.py │ ├── cloudfront_waf_construct.py │ ├── cloudtrail_construct.py │ ├── cloudwatch_alarms_construct.py │ ├── cloudwatch_dashboard_construct.py │ ├── cloudwatch_metrics_construct.py │ ├── condition_aspect.py │ ├── container_image_construct.py │ ├── docker_configs_construct.py │ ├── ecs_service_construct.py │ ├── ecs_task_construct.py │ ├── efs_cleanup_lambda │ │ ├── __init__.py │ │ ├── container_stop_logs.py │ │ └── delete_efs_files.py │ ├── efs_construct.py │ ├── glue_trigger_lambda │ │ ├── __init__.py │ │ └── start_glue_job.py │ ├── operational_metrics_construct.py │ ├── prebid_artifacts_constructs.py │ ├── prebid_configs_construct.py │ ├── prebid_datasync_constructs.py │ ├── prebid_glue_constructs.py │ ├── prebid_metrics_schema.json │ ├── prebid_server_stack.py │ ├── stack_cfn_parameters.py │ ├── stack_constants.py │ └── vpc_construct.py └── setup.py ├── loadtest └── jmx │ ├── .gitignore │ ├── README.md │ └── prebid_server_test_plan.jmx ├── poetry.lock ├── pyproject.toml ├── pytest.ini ├── requirements-poetry.txt └── tests ├── conftest.py ├── functional_tests ├── README.md ├── conftest.py ├── requirements-test.txt ├── run-functional-tests.sh ├── test_bad_requests.py ├── test_data_sync_buckets.py ├── test_metric_etl.py ├── test_prebid_auction.py └── test_prebid_server_endpoints.py ├── setup.py └── unit_tests ├── __init__.py ├── aws_lambda_layers ├── __init__.py ├── aws_solutions │ ├── __init__.py │ └── test_layer.py ├── datasync_s3_layer │ ├── __init__.py │ └── test_reports.py └── metrics_layer │ ├── __init__.py │ └── test_cloudwatch_metrics.py ├── custom_resources ├── __init__.py ├── test_cloudwatch_metrics_report.py ├── test_create_waf_webacl.py ├── test_delete_lambda_eni.py ├── test_delete_waf_webacl.py ├── test_get_prefix_id.py ├── test_header_secret_gen.py ├── test_metrics_glue_scripts.py ├── test_ops_metrics.py └── test_upload_files.py ├── prebid_server ├── __init__.py ├── test_cache_access.py ├── test_cache_access_methods.py ├── test_cloudwatch_dashboard_construct.py ├── test_container_stop_logs.py ├── test_delete_efs_files.py ├── test_prebid_artifacts_constructs.py ├── test_prebid_datasync_constructs.py ├── test_prebid_glue_constructs.py └── test_start_glue_job.py ├── test_app.py ├── test_commons.py └── test_prebid_server_template.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/SECURITY.md -------------------------------------------------------------------------------- /deployment/build-s3-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/build-s3-dist.sh -------------------------------------------------------------------------------- /deployment/ecr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/README.md -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/.dockerignore -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/.gitignore -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/Dockerfile -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/bootstrap.sh -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/current-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/current-config/README.md -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/default-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/default-config/README.md -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/default-config/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/default-config/entrypoint.sh -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/default-config/prebid-analytics-logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/default-config/prebid-analytics-logging.xml -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/default-config/prebid-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/default-config/prebid-config.yaml -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/default-config/prebid-logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/default-config/prebid-logging.xml -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/docker-build-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/docker-build-config.json -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/extra-modules/log-module-reporter/config/AnalyticsConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/extra-modules/log-module-reporter/config/AnalyticsConfiguration.java -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/PsdoaAnalyticsReporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/PsdoaAnalyticsReporter.java -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaBid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaBid.java -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaBidRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaBidRequest.java -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaBidResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaBidResponse.java -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaBidderStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaBidderStatus.java -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaEvent.java -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaEventType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaEventType.java -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaUserSync.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/extra-modules/log-module-reporter/psdoa/model/PsdoaUserSync.java -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/extra-modules/log-module-reporter/test/PsdoaAnalyticsReporterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/extra-modules/log-module-reporter/test/PsdoaAnalyticsReporterTest.java -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/stored_accounts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/stored_accounts/README.md -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/stored_impressions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/stored_impressions/README.md -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/stored_requests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/stored_requests/README.md -------------------------------------------------------------------------------- /deployment/ecr/prebid-server/stored_responses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/ecr/prebid-server/stored_responses/README.md -------------------------------------------------------------------------------- /deployment/run-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/run-unit-tests.sh -------------------------------------------------------------------------------- /deployment/venv_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/deployment/venv_check.py -------------------------------------------------------------------------------- /docs/prebid-server-deployment-on-aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/docs/prebid-server-deployment-on-aws.png -------------------------------------------------------------------------------- /solution-manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/solution-manifest.yaml -------------------------------------------------------------------------------- /source/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/.coveragerc -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/CHANGELOG.md -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/README.md -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aspects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aspects.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_hash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_hash/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_hash/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_hash/hash.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_hash/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_hash/src/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_hash/src/custom_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_hash/src/custom_resources/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_hash/src/custom_resources/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_hash/src/custom_resources/hash.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_hash/src/custom_resources/requirements.txt: -------------------------------------------------------------------------------- 1 | crhelper==2.0.6 -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_name/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_name/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_name/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_name/name.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_name/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_name/src/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_name/src/custom_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_name/src/custom_resources/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_name/src/custom_resources/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_name/src/custom_resources/name.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/resource_name/src/custom_resources/requirements.txt: -------------------------------------------------------------------------------- 1 | crhelper==2.0.6 -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/solutions_metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/solutions_metrics/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/solutions_metrics/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/solutions_metrics/metrics.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/solutions_metrics/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/solutions_metrics/src/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/solutions_metrics/src/custom_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/solutions_metrics/src/custom_resources/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/solutions_metrics/src/custom_resources/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/solutions_metrics/src/custom_resources/metrics.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/solutions_metrics/src/custom_resources/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/cfn_custom_resources/solutions_metrics/src/custom_resources/requirements.txt -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/environment.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/environment_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/environment_variable.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/java/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/java/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/java/bundling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/java/bundling.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/java/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/java/function.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/layers/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/layers/aws_lambda_powertools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/layers/aws_lambda_powertools/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/layers/aws_lambda_powertools/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/layers/aws_lambda_powertools/layer.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/layers/aws_lambda_powertools/requirements/requirements.txt: -------------------------------------------------------------------------------- 1 | aws-lambda-powertools>=1.24.0 -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/python/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/python/bundling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/python/bundling.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/python/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/python/function.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/python/lambda_alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/python/lambda_alarm.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/python/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/aws_lambda/python/layer.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/cfn_nag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/cfn_nag.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/context.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/helpers/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/helpers/copytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/helpers/copytree.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/helpers/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/helpers/loader.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/helpers/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/helpers/logger.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/interfaces.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/mappings.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/scripts/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/scripts/build_s3_cdk_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/scripts/build_s3_cdk_dist.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/stack.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/stepfunctions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/stepfunctions/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/stepfunctions/solution_fragment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/stepfunctions/solution_fragment.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/stepfunctions/solutionstep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/stepfunctions/solutionstep.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/synthesizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/synthesizers.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/tools/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/tools/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/tools/cleaner.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_cdk/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_cdk/setup.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_common/aws_solutions/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_common/aws_solutions/core/__init__.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_common/aws_solutions/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_common/aws_solutions/core/config.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_common/aws_solutions/core/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_common/aws_solutions/core/helpers.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_common/aws_solutions/core/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_common/aws_solutions/core/logging.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_common/aws_solutions/extended/resource_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_common/aws_solutions/extended/resource_lookup.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/helpers_common/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/helpers_common/setup.py -------------------------------------------------------------------------------- /source/cdk_solution_helper_py/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/cdk_solution_helper_py/requirements-dev.txt -------------------------------------------------------------------------------- /source/infrastructure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/app.py -------------------------------------------------------------------------------- /source/infrastructure/aws_lambda_layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/aws_lambda_layers/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/aws_lambda_layers/aws_solutions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/aws_lambda_layers/aws_solutions/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/aws_lambda_layers/aws_solutions/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/aws_lambda_layers/aws_solutions/layer.py -------------------------------------------------------------------------------- /source/infrastructure/aws_lambda_layers/aws_solutions/requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/aws_lambda_layers/aws_solutions/requirements/requirements.txt -------------------------------------------------------------------------------- /source/infrastructure/aws_lambda_layers/datasync_s3_layer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/infrastructure/aws_lambda_layers/datasync_s3_layer/python/datasync_reports/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/aws_lambda_layers/datasync_s3_layer/python/datasync_reports/reports.py -------------------------------------------------------------------------------- /source/infrastructure/aws_lambda_layers/metrics_layer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/aws_lambda_layers/metrics_layer/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/aws_lambda_layers/metrics_layer/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/aws_lambda_layers/metrics_layer/python/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/aws_lambda_layers/metrics_layer/python/cloudwatch_metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/aws_lambda_layers/metrics_layer/python/cloudwatch_metrics/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/aws_lambda_layers/metrics_layer/python/cloudwatch_metrics/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/aws_lambda_layers/metrics_layer/python/cloudwatch_metrics/metrics.py -------------------------------------------------------------------------------- /source/infrastructure/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/cdk.json -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/artifacts_bucket_lambda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/artifacts_bucket_lambda/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/artifacts_bucket_lambda/files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/artifacts_bucket_lambda/files/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/artifacts_bucket_lambda/files/glue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/artifacts_bucket_lambda/files/glue/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/artifacts_bucket_lambda/files/glue/metrics_glue_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/artifacts_bucket_lambda/files/glue/metrics_glue_script.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/artifacts_bucket_lambda/requirements.txt: -------------------------------------------------------------------------------- 1 | crhelper 2 | -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/artifacts_bucket_lambda/upload_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/artifacts_bucket_lambda/upload_files.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/cloudwatch_metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/cloudwatch_metrics/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/cloudwatch_metrics/cloudwatch_metrics_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/cloudwatch_metrics/cloudwatch_metrics_report.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/cloudwatch_metrics/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/docker_configs_bucket_lambda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/docker_configs_bucket_lambda/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/docker_configs_bucket_lambda/requirements.txt: -------------------------------------------------------------------------------- 1 | crhelper 2 | -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/docker_configs_bucket_lambda/upload_docker_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/docker_configs_bucket_lambda/upload_docker_config.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/enable_access_logs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/enable_access_logs/enable_access_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/enable_access_logs/enable_access_logs.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/enable_access_logs/requirements.txt: -------------------------------------------------------------------------------- 1 | crhelper 2 | -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/header_secret_lambda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/header_secret_lambda/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/header_secret_lambda/header_secret_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/header_secret_lambda/header_secret_gen.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/header_secret_lambda/requirements.txt: -------------------------------------------------------------------------------- 1 | crhelper 2 | -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/operational_metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/operational_metrics/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/operational_metrics/ops_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/operational_metrics/ops_metrics.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/operational_metrics/requirements.txt: -------------------------------------------------------------------------------- 1 | crhelper 2 | -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/prebid_configs_lambda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/prebid_configs_lambda/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/prebid_configs_lambda/requirements.txt: -------------------------------------------------------------------------------- 1 | crhelper 2 | -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/prebid_configs_lambda/upload_prebid_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/prebid_configs_lambda/upload_prebid_configs.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/prefix_id_lambda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/prefix_id_lambda/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/prefix_id_lambda/get_prefix_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/prefix_id_lambda/get_prefix_id.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/prefix_id_lambda/requirements.txt: -------------------------------------------------------------------------------- 1 | crhelper 2 | boto3 -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/vpc_eni_lambda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/vpc_eni_lambda/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/vpc_eni_lambda/delete_lambda_eni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/vpc_eni_lambda/delete_lambda_eni.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/vpc_eni_lambda/requirements.txt: -------------------------------------------------------------------------------- 1 | crhelper 2 | -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/waf_webacl_lambda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/waf_webacl_lambda/create_waf_webacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/waf_webacl_lambda/create_waf_webacl.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/waf_webacl_lambda/delete_waf_webacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/custom_resources/waf_webacl_lambda/delete_waf_webacl.py -------------------------------------------------------------------------------- /source/infrastructure/custom_resources/waf_webacl_lambda/requirements.txt: -------------------------------------------------------------------------------- 1 | crhelper 2 | -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/alb_access_logs_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/alb_access_logs_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/alb_entry_deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/alb_entry_deployment.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/app_registry_aspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/app_registry_aspect.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/cache_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/cache_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/cache_lambda/cache_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/cache_lambda/cache_access.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/cache_lambda/requirements.txt: -------------------------------------------------------------------------------- 1 | redis 2 | -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/cloudfront_entry_deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/cloudfront_entry_deployment.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/cloudfront_waf_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/cloudfront_waf_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/cloudtrail_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/cloudtrail_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/cloudwatch_alarms_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/cloudwatch_alarms_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/cloudwatch_dashboard_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/cloudwatch_dashboard_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/cloudwatch_metrics_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/cloudwatch_metrics_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/condition_aspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/condition_aspect.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/container_image_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/container_image_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/docker_configs_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/docker_configs_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/ecs_service_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/ecs_service_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/ecs_task_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/ecs_task_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/efs_cleanup_lambda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/efs_cleanup_lambda/__init__.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/efs_cleanup_lambda/container_stop_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/efs_cleanup_lambda/container_stop_logs.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/efs_cleanup_lambda/delete_efs_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/efs_cleanup_lambda/delete_efs_files.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/efs_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/efs_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/glue_trigger_lambda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/glue_trigger_lambda/start_glue_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/glue_trigger_lambda/start_glue_job.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/operational_metrics_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/operational_metrics_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/prebid_artifacts_constructs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/prebid_artifacts_constructs.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/prebid_configs_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/prebid_configs_construct.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/prebid_datasync_constructs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/prebid_datasync_constructs.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/prebid_glue_constructs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/prebid_glue_constructs.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/prebid_metrics_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/prebid_metrics_schema.json -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/prebid_server_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/prebid_server_stack.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/stack_cfn_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/stack_cfn_parameters.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/stack_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/stack_constants.py -------------------------------------------------------------------------------- /source/infrastructure/prebid_server/vpc_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/prebid_server/vpc_construct.py -------------------------------------------------------------------------------- /source/infrastructure/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/infrastructure/setup.py -------------------------------------------------------------------------------- /source/loadtest/jmx/.gitignore: -------------------------------------------------------------------------------- 1 | *.jtl 2 | *.log -------------------------------------------------------------------------------- /source/loadtest/jmx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/loadtest/jmx/README.md -------------------------------------------------------------------------------- /source/loadtest/jmx/prebid_server_test_plan.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/loadtest/jmx/prebid_server_test_plan.jmx -------------------------------------------------------------------------------- /source/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/poetry.lock -------------------------------------------------------------------------------- /source/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/pyproject.toml -------------------------------------------------------------------------------- /source/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/pytest.ini -------------------------------------------------------------------------------- /source/requirements-poetry.txt: -------------------------------------------------------------------------------- 1 | poetry==2.0.1 -------------------------------------------------------------------------------- /source/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/conftest.py -------------------------------------------------------------------------------- /source/tests/functional_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/functional_tests/README.md -------------------------------------------------------------------------------- /source/tests/functional_tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/functional_tests/conftest.py -------------------------------------------------------------------------------- /source/tests/functional_tests/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/functional_tests/requirements-test.txt -------------------------------------------------------------------------------- /source/tests/functional_tests/run-functional-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/functional_tests/run-functional-tests.sh -------------------------------------------------------------------------------- /source/tests/functional_tests/test_bad_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/functional_tests/test_bad_requests.py -------------------------------------------------------------------------------- /source/tests/functional_tests/test_data_sync_buckets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/functional_tests/test_data_sync_buckets.py -------------------------------------------------------------------------------- /source/tests/functional_tests/test_metric_etl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/functional_tests/test_metric_etl.py -------------------------------------------------------------------------------- /source/tests/functional_tests/test_prebid_auction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/functional_tests/test_prebid_auction.py -------------------------------------------------------------------------------- /source/tests/functional_tests/test_prebid_server_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/functional_tests/test_prebid_server_endpoints.py -------------------------------------------------------------------------------- /source/tests/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/setup.py -------------------------------------------------------------------------------- /source/tests/unit_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/tests/unit_tests/aws_lambda_layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/tests/unit_tests/aws_lambda_layers/aws_solutions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/tests/unit_tests/aws_lambda_layers/aws_solutions/test_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/aws_lambda_layers/aws_solutions/test_layer.py -------------------------------------------------------------------------------- /source/tests/unit_tests/aws_lambda_layers/datasync_s3_layer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/tests/unit_tests/aws_lambda_layers/datasync_s3_layer/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/aws_lambda_layers/datasync_s3_layer/test_reports.py -------------------------------------------------------------------------------- /source/tests/unit_tests/aws_lambda_layers/metrics_layer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/tests/unit_tests/aws_lambda_layers/metrics_layer/test_cloudwatch_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/aws_lambda_layers/metrics_layer/test_cloudwatch_metrics.py -------------------------------------------------------------------------------- /source/tests/unit_tests/custom_resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/tests/unit_tests/custom_resources/test_cloudwatch_metrics_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/custom_resources/test_cloudwatch_metrics_report.py -------------------------------------------------------------------------------- /source/tests/unit_tests/custom_resources/test_create_waf_webacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/custom_resources/test_create_waf_webacl.py -------------------------------------------------------------------------------- /source/tests/unit_tests/custom_resources/test_delete_lambda_eni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/custom_resources/test_delete_lambda_eni.py -------------------------------------------------------------------------------- /source/tests/unit_tests/custom_resources/test_delete_waf_webacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/custom_resources/test_delete_waf_webacl.py -------------------------------------------------------------------------------- /source/tests/unit_tests/custom_resources/test_get_prefix_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/custom_resources/test_get_prefix_id.py -------------------------------------------------------------------------------- /source/tests/unit_tests/custom_resources/test_header_secret_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/custom_resources/test_header_secret_gen.py -------------------------------------------------------------------------------- /source/tests/unit_tests/custom_resources/test_metrics_glue_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/custom_resources/test_metrics_glue_scripts.py -------------------------------------------------------------------------------- /source/tests/unit_tests/custom_resources/test_ops_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/custom_resources/test_ops_metrics.py -------------------------------------------------------------------------------- /source/tests/unit_tests/custom_resources/test_upload_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/custom_resources/test_upload_files.py -------------------------------------------------------------------------------- /source/tests/unit_tests/prebid_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/tests/unit_tests/prebid_server/test_cache_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/prebid_server/test_cache_access.py -------------------------------------------------------------------------------- /source/tests/unit_tests/prebid_server/test_cache_access_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/prebid_server/test_cache_access_methods.py -------------------------------------------------------------------------------- /source/tests/unit_tests/prebid_server/test_cloudwatch_dashboard_construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/prebid_server/test_cloudwatch_dashboard_construct.py -------------------------------------------------------------------------------- /source/tests/unit_tests/prebid_server/test_container_stop_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/prebid_server/test_container_stop_logs.py -------------------------------------------------------------------------------- /source/tests/unit_tests/prebid_server/test_delete_efs_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/prebid_server/test_delete_efs_files.py -------------------------------------------------------------------------------- /source/tests/unit_tests/prebid_server/test_prebid_artifacts_constructs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/prebid_server/test_prebid_artifacts_constructs.py -------------------------------------------------------------------------------- /source/tests/unit_tests/prebid_server/test_prebid_datasync_constructs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/prebid_server/test_prebid_datasync_constructs.py -------------------------------------------------------------------------------- /source/tests/unit_tests/prebid_server/test_prebid_glue_constructs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/prebid_server/test_prebid_glue_constructs.py -------------------------------------------------------------------------------- /source/tests/unit_tests/prebid_server/test_start_glue_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/prebid_server/test_start_glue_job.py -------------------------------------------------------------------------------- /source/tests/unit_tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/test_app.py -------------------------------------------------------------------------------- /source/tests/unit_tests/test_commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/test_commons.py -------------------------------------------------------------------------------- /source/tests/unit_tests/test_prebid_server_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-solutions-library-samples/prebid-server-deployment-on-aws/HEAD/source/tests/unit_tests/test_prebid_server_template.py --------------------------------------------------------------------------------