Skip to content

Commit 34d5196

Browse files
BBL-275 adding std repo files
1 parent 9cd44b7 commit 34d5196

File tree

9 files changed

+211
-0
lines changed

9 files changed

+211
-0
lines changed

.gitallowed

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://github.com/awslabs/git-secrets
2+
README.md
3+

.github/CODEOWNERS

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Use this file to define individuals or teams that are responsible for code in a repository.
2+
# Read more: <https://help.github.com/articles/about-codeowners/>
3+
4+
* @binbashar/leverage-project-terraform-admin
5+
* @binbashar/leverage-project-terraform-dev

.github/ISSUE_TEMPLATE/bug_report.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
## Expected Behavior
14+
A clear and concise description of what you expected to happen.
15+
16+
## Steps to Reproduce
17+
Steps to reproduce the behavior:
18+
1. Go to '...'
19+
2. Run '....'
20+
3. Enter '....'
21+
4. See error
22+
23+
## Screenshots
24+
If applicable, add screenshots or logs to help explain your problem.
25+
26+
## Environment (please complete the following information):
27+
28+
Anything that will help us triage the bug will help. Here are some ideas:
29+
- OS: [e.g. Linux, OSX, WSL, etc]
30+
- Version [e.g. 10.15]
31+
32+
## Additional Context
33+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
3+
contact_links:
4+
5+
- name: DevOps Cloud Services Program
6+
url: https://www.binbash.com.ar
7+
about: |-
8+
At Binbash Leverage, our focus is on creating reusable, high quality infrastructure code, such as our Reference AWS Cloud Solutions Architecture backed by our DevOps Automation Code Library.
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Feature Request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: 'feature request'
6+
assignees: ''
7+
8+
---
9+
10+
## Describe the Feature
11+
12+
A clear and concise description of what the bug is.
13+
14+
## Expected Behavior
15+
16+
A clear and concise description of what you expected to happen.
17+
18+
## Use Case
19+
20+
Is your feature request related to a problem/challenge you are trying to solve? Please provide some additional context of why this feature or capability will be valuable.
21+
22+
## Describe Ideal Solution
23+
24+
A clear and concise description of what you want to happen. If you don't know, that's okay.
25+
26+
## Alternatives Considered
27+
28+
Explain what alternative solutions or features you've considered.
29+
30+
## Additional Context
31+
32+
Add any other context or screenshots about the feature request here.

.github/ISSUE_TEMPLATE/question.md

Whitespace-only changes.

.github/PULL_REQUEST_TEMPLATE.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## what
2+
* Describe high-level what changed as a result of these commits (i.e. in plain-english, what do these changes mean?)
3+
* Use bullet points to be concise and to the point.
4+
5+
## why
6+
* Provide the justifications for the changes (e.g. business case).
7+
* Describe why these changes were made (e.g. why do these commits fix the problem?)
8+
* Use bullet points to be concise and to the point.
9+
10+
## references
11+
* Link to any supporting github issues or helpful documentation to add some context (e.g. stackoverflow).
12+
* Use `closes #123`, if this PR closes a GitHub issue `#123`
13+

.gitignore

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# Hidden files #
2+
################
3+
.*
4+
#
5+
# Except
6+
#
7+
!*.env.example
8+
!*.circleci
9+
!*.dockeringnore
10+
!*.hosts
11+
!/.gitignore
12+
!/.chglog
13+
!/.gitallowed
14+
!/.github
15+
!*.gitkeep
16+
17+
# SSH keys #
18+
############
19+
id_rsa
20+
id_dsa
21+
22+
# OS generated files #
23+
######################
24+
.DS_Store
25+
.DS_Store?
26+
._*
27+
.Spotlight-V100
28+
.Trashes
29+
ehthumbs.db
30+
Thumbs.db
31+
32+
# Packages #
33+
############
34+
# it's better to unpack these files and commit the raw source
35+
# git has its own built in compression methods
36+
*.7z
37+
*.dmg
38+
*.gz
39+
*.iso
40+
*.jar
41+
*.rar
42+
*.tar
43+
*.zip
44+
*.tar.gz
45+
46+
#
47+
# Except
48+
#
49+
!lambda_function.*.zip
50+
!lambda_function.lambda_handler.zip
51+
!lambda_function.*.zip
52+
53+
# Logs and databases #
54+
######################
55+
*.log
56+
*.sql
57+
*.sqlite
58+
*.out
59+
60+
# IDE related files #
61+
#####################
62+
.classpath
63+
.project
64+
.settings
65+
.idea
66+
.metadata
67+
*.iml
68+
*.ipr
69+
.vscode
70+
/src
71+
/venv
72+
73+
# Custom Project tools files #
74+
########################
75+
*.pyc
76+
*.pyo
77+
*.vault_pass
78+
*.pgpass
79+
*.vagrant
80+
81+
# TF Project files #
82+
####################
83+
#
84+
# Compiled files
85+
#
86+
*.tfstate
87+
*.tfstate.backup
88+
#
89+
# Module directory
90+
#
91+
.terraform
92+
#
93+
# Terratest
94+
#
95+
tests/vendor/
96+
tests/Gopkg.*

LICENSE.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
### The MIT License (MIT)
2+
3+
Copyright (c) 2020 Binbashar Inc
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

0 commit comments

Comments
 (0)