Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ _mailinglist
docs/_build/
__pycache__
.env_file
.venv

# Coverage reports
htmlcov/
Expand Down
6 changes: 3 additions & 3 deletions ci-cd-codepipeline.cfn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ Parameters:
GitSourceRepo:
Type: String
Description: GitHub source repository - must contain a Dockerfile and buildspec.yml in the base
Default: cd0157-Server-Deployment-and-Containerization
Default: simple-flask
MinLength: 1
MaxLength: 100
ConstraintDescription: You must enter a GitHub repository name

GitBranch:
Type: String
Default: master
Default: main
Description: GitHub git repository branch - change triggers a new build
MinLength: 1
MaxLength: 100
Expand All @@ -40,7 +40,7 @@ Parameters:

GitHubUser:
Type: String
Default: SudKul
Default: mattgaskey
Description: GitHub username or organization
MinLength: 3
MaxLength: 100
Expand Down
6 changes: 3 additions & 3 deletions examples/Cloudformation/my_parameters.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[
{
"ParameterKey": "myVPC",
"ParameterValue": "vpc-098defbc811aad87c"
"ParameterValue": "vpc-0104631f7dac77c2b"
},
{
"ParameterKey": "PublicSubnet",
"ParameterValue": "subnet-031d7c02210432b1c"
"ParameterValue": "subnet-0f8540b460635ab76"
},
{
"ParameterKey": "AMItoUse",
"ParameterValue": "ami-0fa49cc9dc8d62c84"
"ParameterValue": "ami-01816d07b1128cd2d"
}
]
2 changes: 1 addition & 1 deletion examples/Deploy_Flask_App/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
containers:
- name: simple-flask
# image: IMAGE_TAG
image: sudkul/simple-flask
image: mattgaskey0704/simple-flask
securityContext:
privileged: false
readOnlyRootFilesystem: false
Expand Down
2 changes: 1 addition & 1 deletion trust.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::519002666132:root"
"AWS": "arn:aws:iam::123531518340:root"
},
"Action": "sts:AssumeRole"
}
Expand Down
Loading