Skip to content

Commit 1ce86ac

Browse files
htztomicschana
authored andcommitted
2023.11 release
0 parents  commit 1ce86ac

File tree

1,034 files changed

+195761
-0
lines changed

Some content is hidden

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

1,034 files changed

+195761
-0
lines changed

.bandit

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# FILE: .bandit
2+
[bandit]
3+
skips = B113,B307,B501,B506,B602,B605,B701,B324,B108,B604,B313,B608,B310,B303

.cfnnag_global_suppress_list

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
RulesToSuppress:
2+
- id: W11
3+
reason: needed for idea installer
4+
- id: W12
5+
reason: needed for idea installer
6+
- id: W76
7+
reason: needed for idea installer
8+
- id: F4
9+
reason: needed for idea installer
10+
- id: F39
11+
reason: needed for idea installer
12+
- id: F1000
13+
reason: needed for idea installer

.coveragerc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[report]
2+
skip_empty = True

.crux_template.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
## Context
2+
[Asana](url)
3+
4+
## Blast Radius
5+
Modifies frontend/backend
6+
7+
## Description
8+
9+
## Testing
10+
- Confirmed build, unit tests and deployment are working.
11+
12+
## Checklist
13+
- [ ] I updated my local Git repository (by fetching changes, then merging or rebasing).
14+
- [ ] I will squash all my commits before pushing.
15+
- [ ] Changes were deployed to an env connected to the dev AD
16+
- [ ] I conducted manual testing to confirm typical functions continue to work as expected.
17+
- [ ] I ran integration tests where applicable
18+
- [ ] I modified/added unit tests to cover all changed/new functionalities.
19+
- [ ] I modified/added integration tests to cover all changed/new functionalities.
20+
- [ ] Personal pipeline completes normally.
21+
- [ ] Code coverage did not drop.
22+
- [ ] I updated the `Readme.md` file with any package-specific build or test instructions.
23+
- [ ] This change is backwards compatible.
24+
- [ ] This change can be rolled back.
25+
- [ ] This change does not affect the traffic pattern to any existing dependent services, nor introduces new dependent services.
26+
- [ ] I included, in the _Description_ section, links to any monitors that need to be observed over the next few days to verify success of this change.
27+
- [ ] I updated the necessary documentation

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
end_of_line = lf
9+
charset = utf-8
10+
max_line_length = 340
11+
12+
[*.{yml,yaml,json,js,css,html,jinja,jinja2,bat,sh,ps1,template}]
13+
indent_size = 2

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.css linguist-vendored
2+
*.scss linguist-vendored
3+
*.js linguist-vendored
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve RES
4+
title: "[BUG]"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
If you have an active AWS support contract, please open a case with AWS Premium Support team using the below documentation to report the issue:
10+
11+
https://docs.aws.amazon.com/awssupport/latest/user/case-management.html
12+
13+
Before submitting a new issue, please search through open GitHub Issues (https://github.com/aws/res/issues) and check out the troubleshooting documentation.
14+
15+
Please make sure to add the following data in order to facilitate the root cause detection.
16+
**Describe the bug**
17+
A clear and concise description of what the bug is.
18+
19+
**To Reproduce**
20+
Steps to reproduce the behavior:
21+
1. Go to '...'
22+
2. Click on '....'
23+
3. Scroll down to '....'
24+
4. See error
25+
26+
**Expected behavior**
27+
A clear and concise description of what you expected to happen.
28+
29+
**Screenshots**
30+
If applicable, add screenshots to help explain your problem.
31+
32+
**Desktop (please complete the following information):**
33+
- OS: [e.g. iOS]
34+
- Browser [e.g. chrome, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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 solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
## What does this PR do?
2+
3+
_Please describe your PR. For a bug fix, what was the old behavior, what is the new behavior?_
4+
5+
_Please add links to any issues, RFCs or other items that are relevant to this PR._
6+
7+
## How was this PR tested?
8+
9+
_Please describe any testing performed._
10+
- Describe the automated and/or manual tests executed to validate the patch.
11+
- Describe the added/modified tests.
12+
13+
### Checklist
14+
15+
- Make sure you are pointing to the right branch.
16+
- If you're creating a patch for a branch other than develop add the branch name as prefix in the PR title.
17+
- Check all commits' messages are clear, describing what and why vs how.
18+
- Make sure to have added unit tests or integration tests to cover the new/modified code.
19+
- Check if documentation is impacted by this change.
20+
- Link to impacted open issues.
21+
- Link to related PRs in other packages (i.e. cookbook, node).
22+
- Link to documentation useful to understand the changes.
23+
24+
## License
25+
26+
Please review the guidelines for contributing and Pull Request Instructions.
27+
28+
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.te this contribution, under the terms of your choice.

.gitignore

Lines changed: 203 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,203 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# IDEA Specific
7+
deployment/ecr/idea-administrator/*.tar.gz
8+
open-source/
9+
deployment/global-s3-assets/
10+
deployment/regional-s3-assets/
11+
12+
# C extensions
13+
*.so
14+
15+
# Distribution / packaging
16+
.Python
17+
build/
18+
develop-eggs/
19+
dist/
20+
downloads/
21+
eggs/
22+
.eggs/
23+
lib/
24+
lib64/
25+
parts/
26+
sdist/
27+
var/
28+
wheels/
29+
tests/modules/vdc/outputs/
30+
31+
*.egg-info/
32+
.installed.cfg
33+
*.egg
34+
MANIFEST
35+
36+
# PyInstaller
37+
# Usually these files are written by a python script from a template
38+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
39+
*.manifest
40+
*.spec
41+
42+
# Installer logs
43+
pip-log.txt
44+
pip-delete-this-directory.txt
45+
46+
# Unit test / coverage reports
47+
htmlcov/
48+
summary_report.txt
49+
.tox/
50+
.coverage
51+
.coverage.*
52+
.cache
53+
nosetests.xml
54+
coverage.xml
55+
*.cover
56+
*.coverage
57+
*.coverage.*
58+
.hypothesis/
59+
.pytest_cache/
60+
*.scannerwork/
61+
62+
# Translations
63+
*.mo
64+
*.pot
65+
66+
# Django stuff:
67+
*.log
68+
local_settings.py
69+
db.sqlite3
70+
71+
# Flask stuff:
72+
instance/
73+
.webassets-cache
74+
75+
# Scrapy stuff:
76+
.scrapy
77+
78+
# Sphinx documentation
79+
docs/_build/
80+
81+
# PyBuilder
82+
target/
83+
84+
# Jupyter Notebook
85+
.ipynb_checkpoints
86+
87+
# pyenv
88+
.python-version
89+
90+
# celery beat schedule file
91+
celerybeat-schedule
92+
93+
# SageMath parsed files
94+
*.sage.py
95+
96+
# Environments
97+
.env/
98+
.venv/
99+
env/
100+
*venv/
101+
ENV/
102+
env.bak/
103+
venv.bak/
104+
105+
# Spyder project settings
106+
.spyderproject
107+
.spyproject
108+
109+
# Rope project settings
110+
.ropeproject
111+
112+
# mkdocs documentation
113+
/site
114+
115+
# mypy
116+
.mypy_cache/
117+
118+
# IDE and Editor artifacts #
119+
*.bbprojectd
120+
.idea/*
121+
.idea
122+
*.iml
123+
124+
# Temporary Files #
125+
tmp_*
126+
cfg.tmp.json
127+
128+
# OS generated files #
129+
.DS_Store
130+
.DS_Store?
131+
132+
# VScode
133+
.vscode/
134+
135+
# Node
136+
**/node_modules/**
137+
138+
139+
## Local Development
140+
141+
scratch/
142+
tasks/local_dev.py
143+
build-dev-mode/
144+
codebuild_build.sh
145+
146+
# Locally stored "Eclipse launch configurations"
147+
*.launch
148+
149+
# PyDev specific (Python IDE for Eclipse)
150+
*.pydevproject
151+
152+
# CDT-specific (C/C++ Development Tooling)
153+
.cproject
154+
155+
# CDT- autotools
156+
.autotools
157+
158+
# Java annotation processor (APT)
159+
.factorypath
160+
161+
# PDT-specific (PHP Development Tools)
162+
.buildpath
163+
164+
# sbteclipse plugin
165+
.target
166+
167+
# Tern plugin
168+
.tern-project
169+
170+
# TeXlipse plugin
171+
.texlipse
172+
173+
# STS (Spring Tool Suite)
174+
.springBeans
175+
176+
# Code Recommenders
177+
.recommenders/
178+
179+
# Annotation Processing
180+
.apt_generated/
181+
.apt_generated_test/
182+
183+
# Scala IDE specific (Scala & Java development for Eclipse)
184+
.cache-main
185+
.scala_dependencies
186+
.worksheet
187+
188+
# Uncomment this line if you wish to ignore the project description file.
189+
# Typically, this file would be tracked if it contains build/dependency configurations:
190+
.project
191+
192+
# Below path has been safelisted to allow NICE DCV Connection Gateway to work.
193+
# It contains the js script that validates certificates and enables connection establishing.
194+
!source/idea/idea-dcv-connection-gateway/js/lib/
195+
196+
# Test outputs
197+
integration-test-results/
198+
199+
!pipeline/lib/
200+
201+
# CDK asset staging directory
202+
.cdk.staging
203+
cdk.out

0 commit comments

Comments
 (0)