Skip to content

Commit 5631aef

Browse files
Release v1.0.0
1 parent 4d3c11f commit 5631aef

File tree

196 files changed

+15191
-21
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+15191
-21
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior.
15+
16+
**Expected behavior**
17+
A clear and concise description of what you expected to happen.
18+
19+
**Please complete the following information about the solution:**
20+
- [ ] Version: [e.g. v1.0.0]
21+
22+
To get the version of the solution, you can look at the description of the created CloudFormation stack. For example, "_(SO0021) - Video On Demand workflow with AWS Step Functions, MediaConvert, MediaPackage, S3, CloudFront and DynamoDB. Version **v5.0.0**_". If you have not yet installed the stack, or are unable to install due to a problem, you can find the version and solution ID in the template with a text editor. Open the .template file and search for `SOLUTION_VERSION` in the content. You will find several matches and they will all be the same value:
23+
24+
```json
25+
"Environment": {
26+
"Variables": {
27+
"SOLUTION_ID": "SO0248",
28+
"SOLUTION_VERSION": "v1.0.0"
29+
}
30+
},
31+
```
32+
33+
This information is also provided in `source/infrastructure/cdk.json`:
34+
35+
```json
36+
"SOLUTION_ID": "SO0248",
37+
"SOLUTION_VERSION": "v1.0.0",
38+
```
39+
40+
41+
42+
- [ ] Region: [e.g. us-east-1]
43+
- [ ] Was the solution modified from the version published on this repository?
44+
- [ ] If the answer to the previous question was yes, are the changes available on GitHub?
45+
- [ ] Have you checked your [service quotas](https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) for the sevices this solution uses?
46+
- [ ] Were there any errors in the CloudWatch Logs?
47+
48+
**Screenshots**
49+
If applicable, add screenshots to help explain your problem (please **DO NOT include sensitive information**).
50+
51+
**Additional context**
52+
Add any other context about the problem here.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this solution
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the feature you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Additional context**
17+
Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*Issue #, if available:*
2+
3+
*Description of changes:*
4+
5+
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

.gitignore

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Modified based on https://www.gitignore.io/api/visualstudiocode,python
2+
3+
# compiled output
4+
**/global-s3-assets
5+
**/regional-s3-assets
6+
**/build-s3-assets
7+
**/open-source
8+
**/tmp
9+
10+
### Python ###
11+
# Byte-compiled / optimized / DLL files
12+
__pycache__/
13+
*.py[cod]
14+
*$py.class
15+
16+
# Python Distribution / packaging
17+
*.egg-info/
18+
*.egg
19+
20+
# Python Virtual Environments
21+
**/venv*
22+
**/.venv*
23+
!deployment/venv_check.py
24+
.python-version
25+
26+
## Python Testing
27+
**/.pytest_cache
28+
**/.coverage
29+
**/coverage-reports/
30+
**/.coverage-*
31+
source/.coverage.*
32+
33+
# linting, scanning configurations, sonarqube
34+
.scannerwork/
35+
36+
### VisualStudioCode ###
37+
.vscode/*
38+
39+
### IntelliJ/ PyCharm ###
40+
**/.idea/*
41+
42+
# System Files
43+
**/.DS_Store
44+
45+
# CDK
46+
**/cdk.out
47+
48+
# Glue
49+
.glue/*
50+
51+
# Generated test assets
52+
source/infrastructure/tests/assets/*
53+
!source/infrastructure/tests/assets/.keep
54+
source/scheduler/cdk/aws_solutions/scheduler/cdk/aws_lambda/get_next_scheduled_event/build
55+
source/scheduler/cdk/aws_solutions/scheduler/cdk/aws_lambda/get_next_scheduled_event/.gradle
56+
source/scheduler/cdk/aws_solutions/scheduler/cdk/aws_lambda/get_next_scheduled_event/.idea
57+
58+
# gradle build files
59+
**/.gradle/*
60+
61+
# java build files
62+
**/java/**/build
63+
64+
# python build files
65+
source/cdk_solution_helper_py/helpers_cdk/build/*
66+
source/cdk_solution_helper_py/helpers_common/build/*
67+
source/scheduler/common/build/*
68+
source/scheduler/cdk/build/*
69+
source/aws_lambda/shared/util/build/*
70+
71+
# various temporary file extensions
72+
*.bkp
73+
*.tmp
74+
*.sav
75+
*.dtmp

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [1.0.0] - 2024-05-28
9+
10+
### Added
11+
12+
- All files, initial version

CODE_OF_CONDUCT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
## Code of Conduct
2-
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
3-
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
2+
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
3+
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
44
[email protected] with any additional questions or comments.

CONTRIBUTING.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.
1111

1212
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
1313

14-
When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already
14+
When filing an issue, please check [existing open](https://github.com/aws-solutions/prebid-server-deployment-on-aws/issues), or [recently closed](https://github.com/aws-solutions/prebid-server-deployment-on-aws/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
1515
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
1616

1717
* A reproducible test case or series of steps
@@ -31,17 +31,18 @@ To send us a pull request, please:
3131

3232
1. Fork the repository.
3333
2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
34-
3. Ensure local tests pass.
35-
4. Commit to your fork using clear commit messages.
36-
5. Send us a pull request, answering any default questions in the pull request interface.
37-
6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
34+
3. Ensure all build processes execute successfully (see README.md for additional guidance).
35+
4. Ensure all unit, integration, and/or snapshot tests pass, as applicable.
36+
5. Commit to your fork using clear commit messages.
37+
6. Send us a pull request, answering any default questions in the pull request interface.
38+
7. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
3839

3940
GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
4041
[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
4142

4243

4344
## Finding contributions to work on
44-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start.
45+
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/aws-solutions/prebid-server-deployment-on-aws/labels/help%20wanted) issues is a great place to start.
4546

4647

4748
## Code of Conduct
@@ -51,9 +52,11 @@ [email protected] with any additional questions or comments.
5152

5253

5354
## Security issue notifications
54-
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
55+
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public GitHub issue.
5556

5657

5758
## Licensing
5859

59-
See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
60+
See the [LICENSE](https://github.com/aws-solutions/prebid-server-deployment-on-aws/blob/main/LICENSE.txt) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
61+
62+
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

LICENSE renamed to LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,4 +172,4 @@
172172
of any other Contributor, and only if You agree to indemnify,
173173
defend, and hold each Contributor harmless for any liability
174174
incurred by, or claims asserted against, such Contributor by reason
175-
of your accepting any such warranty or additional liability.
175+
of your accepting any such warranty or additional liability.

NOTICE

Lines changed: 0 additions & 1 deletion
This file was deleted.

NOTICE.txt

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
Prebid Server Deployment on AWS
2+
3+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
Licensed under the Apache License Version 2.0 (the "License"). You may not use this file except
5+
in compliance with the License. A copy of the License is located at http://www.apache.org/licenses/
6+
or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS,
7+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. See the License for the
8+
specific language governing permissions and limitations under the License.
9+
10+
**********************
11+
THIRD PARTY COMPONENTS
12+
**********************
13+
This software includes third party software subject to the following copyrights:
14+
15+
Name Version License
16+
prebid-server-java 2.12.0 Apache-2.0
17+
Jinja2 3.1.2 BSD License
18+
MarkupSafe 2.1.1 BSD License
19+
PyYAML 6.0 MIT License
20+
Werkzeug 2.1.2 BSD License
21+
attrs 22.1.0 MIT License
22+
avro 1.11.1 Apache Software License
23+
aws-cdk-lib 2.140.0 Apache-2.0
24+
aws-cdk.asset-awscli-v1 2.2.11 Apache-2.0
25+
aws-cdk.asset-kubectl-v20 2.1.1 Apache-2.0
26+
aws-cdk.asset-node-proxy-agent-v5 2.0.17 Apache-2.0
27+
aws-lambda 0.2.0 Apache Software License
28+
aws-lambda-powertools 1.31.0 MIT License; Other/Proprietary License
29+
aws-solutions-cdk 2.0.0 Apache Software License
30+
aws-solutions-constructs.aws-eventbridge-lambda 2.25.0 Apache-2.0
31+
aws-solutions-constructs.aws-lambda-dynamodb 2.25.0 Apache-2.0
32+
aws-solutions-constructs.aws-lambda-sns 2.25.0 Apache-2.0
33+
aws-solutions-constructs.core 2.25.0 Apache-2.0
34+
aws-solutions-python 2.0.0 Apache Software License
35+
aws-xray-sdk 2.11.0 Apache Software License
36+
black 22.10.0 MIT License
37+
boto3 1.26.12 Apache Software License
38+
botocore 1.29.12 Apache Software License
39+
cattrs 22.2.0 MIT License
40+
cdk-nag 2.18.47 Apache-2.0
41+
certifi 2022.9.24 Mozilla Public License 2.0 (MPL 2.0)
42+
cffi 1.15.1 MIT License
43+
charset-normalizer 2.0.12 MIT License
44+
click 8.1.3 BSD License
45+
constructs 10.1.163 Apache-2.0
46+
coverage 6.5.0 Apache Software License
47+
crhelper 2.0.11 Apache Software License
48+
cronex 0.1.3.1 MIT License
49+
cryptography 38.0.3 Apache Software License; BSD License
50+
docker 6.0.0 Apache Software License
51+
exceptiongroup 1.0.4 MIT License
52+
fastjsonschema 2.16.2 BSD License
53+
idna 3.4 BSD License
54+
infrastructure 1.0.0 Apache Software License
55+
iniconfig 1.1.1 MIT License
56+
jmespath 1.0.1 MIT License
57+
jsii 1.71.0 Apache Software License
58+
moto 4.0.3 Apache Software License
59+
mypy-extensions 0.4.3 MIT License
60+
packaging 21.3 Apache Software License; BSD License
61+
parsedatetime 2.6 Apache Software License
62+
pathspec 0.10.2 Mozilla Public License 2.0 (MPL 2.0)
63+
platformdirs 2.5.4 MIT License
64+
pluggy 1.0.0 MIT License
65+
publication 0.0.3 MIT License
66+
pycparser 2.21 BSD License
67+
pyparsing 3.0.9 MIT License
68+
pytest 7.2.0 MIT License
69+
pytest-cov 4.0.0 MIT License
70+
pytest-env 0.8.1 MIT License
71+
pytest-mock 3.10.0 MIT License
72+
python-dateutil 2.8.2 Apache Software License; BSD License
73+
pytz 2022.6 MIT License
74+
requests 2.28.1 Apache Software License
75+
responses 0.17.0 Apache 2.0
76+
s3transfer 0.6.0 Apache Software License
77+
shared 0.0.0 Apache Software License
78+
six 1.16.0 MIT License
79+
tenacity 8.1.0 Apache Software License
80+
tomli 2.0.1 MIT License
81+
typeguard 2.13.3 MIT License
82+
typing_extensions 4.4.0 Python Software Foundation License
83+
urllib3 1.26.12 MIT License
84+
websocket-client 1.4.2 Apache Software License
85+
wrapt 1.14.1 BSD License
86+
xmltodict 0.13.0 MIT License
87+
wheel 0.38.4 MIT License
88+

0 commit comments

Comments
 (0)