Skip to content

Commit 84a1b3a

Browse files
author
John Preston
committed
Initial commit
0 parents  commit 84a1b3a

8 files changed

Lines changed: 844 additions & 0 deletions

File tree

.gitignore

Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
#EMACS TMP
10+
*~
11+
12+
OUTPUTS
13+
outputs/*.json
14+
outputs/*.yml
15+
outputs/*.yaml
16+
17+
#DOCS
18+
docs/_build/*
19+
docs/_static/*
20+
docs/ecs_composex*.rst
21+
22+
23+
# IDEA STUFF
24+
.idea
25+
26+
# Cloud9 artifacts
27+
*~c9*
28+
29+
# Distribution / packaging
30+
.Python
31+
env/
32+
build/
33+
develop-eggs/
34+
dist/
35+
downloads/
36+
eggs/
37+
.eggs/
38+
lib/
39+
lib64/
40+
parts/
41+
sdist/
42+
var/
43+
wheels/
44+
*.egg-info/
45+
.installed.cfg
46+
*.egg
47+
48+
# PyInstaller
49+
# Usually these files are written by a python script from a template
50+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
51+
*.manifest
52+
*.spec
53+
54+
# Installer logs
55+
pip-log.txt
56+
pip-delete-this-directory.txt
57+
58+
# Unit test / coverage reports
59+
htmlcov/
60+
.tox/
61+
.coverage
62+
.coverage.*
63+
.cache
64+
nosetests.xml
65+
coverage.xml
66+
*.cover
67+
.hypothesis/
68+
.pytest_cache/
69+
70+
# Translations
71+
*.mo
72+
*.pot
73+
74+
# Django stuff:
75+
*.log
76+
local_settings.py
77+
78+
# Flask stuff:
79+
instance/
80+
.webassets-cache
81+
82+
# Scrapy stuff:
83+
.scrapy
84+
85+
# Sphinx documentation
86+
docs/ecs_composex*.rst
87+
docs/modules.rst
88+
89+
90+
# PyBuilder
91+
target/
92+
93+
# Jupyter Notebook
94+
.ipynb_checkpoints
95+
96+
# pyenv
97+
.python-version
98+
99+
# celery beat schedule file
100+
celerybeat-schedule
101+
102+
# SageMath parsed files
103+
*.sage.py
104+
105+
# dotenv
106+
.env
107+
108+
# virtualenv
109+
.venv
110+
venv/
111+
ENV/
112+
113+
# Spyder project settings
114+
.spyderproject
115+
.spyproject
116+
117+
# Rope project settings
118+
.ropeproject
119+
120+
# mkdocs documentation
121+
/site
122+
123+
# mypy
124+
.mypy_cache/
125+
/codebuild_build.sh

LICENSE

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2020, John Mille <john@lambda-my-aws.io>
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
* Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
* Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
* Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[
2+
{
3+
"ParameterKey": "ArtifactsBucketName",
4+
"ParameterValue": "codepipeline-eu-west-1-637670497245"
5+
},
6+
{
7+
"ParameterKey": "DockerComposeRepoName",
8+
"ParameterValue": "myapps-compose"
9+
},
10+
{
11+
"ParameterKey": "DockerComposerRepoName",
12+
"ParameterValue": "docker-composerx"
13+
},
14+
{
15+
"ParameterKey": "ServiceName",
16+
"ParameterValue": "app01"
17+
},
18+
{
19+
"ParameterKey": "AppEcrRepoName",
20+
"ParameterValue": "blog-app-01"
21+
},
22+
{
23+
"ParameterKey": "AppVcsRepoName",
24+
"ParameterValue": "blog-app-01"
25+
}
26+
]
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[
2+
{
3+
"ParameterKey": "ArtifactsBucketName",
4+
"ParameterValue": "codepipeline-eu-west-1-637670497245"
5+
},
6+
{
7+
"ParameterKey": "DockerComposeRepoName",
8+
"ParameterValue": "myapps-compose"
9+
},
10+
{
11+
"ParameterKey": "DockerComposerRepoName",
12+
"ParameterValue": "docker-composerx"
13+
},
14+
{
15+
"ParameterKey": "ServiceName",
16+
"ParameterValue": "app02"
17+
},
18+
{
19+
"ParameterKey": "AppEcrRepoName",
20+
"ParameterValue": "blog-app-02"
21+
},
22+
{
23+
"ParameterKey": "AppVcsRepoName",
24+
"ParameterValue": "blog-app-02"
25+
}
26+
]
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[
2+
{
3+
"ParameterKey": "ArtifactsBucketName",
4+
"ParameterValue": "codepipeline-eu-west-1-637670497245"
5+
},
6+
{
7+
"ParameterKey": "DockerComposeRepoName",
8+
"ParameterValue": "myapps-compose"
9+
},
10+
{
11+
"ParameterKey": "DockerComposerRepoName",
12+
"ParameterValue": "docker-composerx"
13+
},
14+
{
15+
"ParameterKey": "ServiceName",
16+
"ParameterValue": "app03"
17+
},
18+
{
19+
"ParameterKey": "AppEcrRepoName",
20+
"ParameterValue": "blog-app-03"
21+
},
22+
{
23+
"ParameterKey": "AppVcsRepoName",
24+
"ParameterValue": "blog-app-03"
25+
}
26+
]

0 commit comments

Comments
 (0)