Skip to content

Commit

Permalink
project prep
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgaskey committed Jan 2, 2025
1 parent b9f5782 commit 2fe0e9e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
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

0 comments on commit 2fe0e9e

Please sign in to comment.