Compare commits

..

10 Commits

Author SHA1 Message Date
6424e1fe86 Adding aws cert details 2023-06-12 13:21:39 -07:00
f26dc7c374 Moving verification script to a proper location 2023-03-14 20:48:28 -07:00
f9e6cb4921 Fixing image name for aws-cli 2023-03-14 20:46:03 -07:00
1bde01bfe9 fixing typo in job key-value 2023-03-14 20:44:38 -07:00
9857b9645e Deploy script fixed for resume files 2023-03-14 20:37:13 -07:00
d9432ceff4 + Adding ssnc (no description for now) 2022-07-15 19:55:32 -07:00
shockrah
24d55d7ce5 + New sre job :^) 2022-04-19 00:31:25 +00:00
shockrah
f586869de4 * Support for certificate links and certificate id 2022-02-01 13:11:11 -08:00
shockrah
d6a2ba027d + Adding certificate links 2022-02-01 13:10:48 -08:00
shockrah
0e2623f65a + Adding back deployment job 2022-01-26 12:10:59 -08:00
8 changed files with 73 additions and 10 deletions

View File

@ -2,14 +2,14 @@ image: registry.gitlab.com/pages/hugo:latest
stages:
- build
- vps
- deploy
variables:
GIT_SUBMODULE_STRATEGY: recursive
# Only because it's broken right now
build:
# This build stage will also leave artifacts ready for gitlab pages to use
pages:
stage: build
only:
refs:
@ -19,6 +19,30 @@ build:
artifacts:
paths:
- public
only:
- master
build-resume.shockrah.xyz:
stage: build
only:
refs:
- master
script:
- hugo
artifacts:
paths:
- public
deploy-resume.shockrah.xyz:
stage: deploy
image:
name: amazon/aws-cli:2.2.25
entrypoint: [""]
only:
refs:
- master
needs:
- build-resume.shockrah.xyz
before_script:
- bash scripts/verify-aws-fields.sh
script:
- aws s3 cp public/ s3://resume.shockrah.xyz --recursive

8
content/education/aws.md Normal file
View File

@ -0,0 +1,8 @@
---
institution: AWS Certified Cloud Practioneer
when: June 2023
degree: Certificate
certlink: https://www.credly.com/badges/59db6298-f69d-4ad3-9ffb-74c8431d7a4d/public_url
rank: 2
---

View File

@ -1,6 +1,6 @@
---
institution: California State University Monterey Bay
when: Graduated Dec 2019
when: Dec 2019
degree: Bachelor's
rank: 5
---

View File

@ -1,7 +1,8 @@
---
institution: CompTIA Security+ Certified
when: Acheived July 2021
when: July 2021
degree: Certification
certid: 83JZR9SPWDV1Q6CS
rank: 4
---

View File

@ -1,7 +1,8 @@
---
institution: Splunk Core User Certified
when: Acheived August 2021
when: August 2021
degree: Certification
certlink: https://www.credly.com/badges/709380cd-ac24-48a2-953d-803d63eaae96
rank: 3
---

View File

@ -0,0 +1,8 @@
---
company: SSNC
when: April 2022 - Current
title: Site Reliability Engineer
rank: -4
---

View File

@ -0,0 +1,16 @@
#!/bin/bash
set -e
echo "Checking to make sure all required AWS env vars are present"
[[ $AWS_DEFAULT_REGION != '' ]]
echo AWS_DEFAULT_REGION is set
[[ $AWS_DEFAULT_REGION != '' ]]
echo AWS_ACCESS_KEY_ID is set
[[ $AWS_DEFAULT_REGION != '' ]]
echo AWS_SECRET_ACCESS_KEY is set

View File

@ -6,9 +6,14 @@
<li style="list-style-type: none;">
<a><strong class="bigger">{{.Params.Institution}}</strong></a>
{{ if .Params.Degree }}
<p class="text-muted">{{.Params.When}}</p>
<p class="text-muted">{{.Params.Degree}} acheived {{.Params.When}}</p>
{{ end }}
{{ if .Params.Certlink }}
<a href="{{.Params.Certlink}}">Certificate Link</a>
{{ end }}
{{ if .Params.Certid }}
<p class="text-muted">Certificate id: {{.Params.Certid}}</p>
{{ end }}
<p>{{.Content}}</p>
</li>
{{ end }}
</ul>