Skip to content

Commit

Permalink
🔧 Fix and add certifications (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZenikAdrien authored Sep 1, 2022
1 parent a8275ab commit 0332262
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions hasura/seeds/08-certifications.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ INSERT INTO "Certification" ("name", "certBody", "verified") VALUES
('Advanced Certified Scrum Master', 'Scrum Alliance', true),
('Certified Scrum Professional Scrum Master', 'Scrum Alliance', true),
('Certified Scrum Product Owner', 'Scrum Alliance', true),
('Advamced Certified Scrum Product Owner', 'Scrum Alliance', true),
('Advanced Certified Scrum Product Owner', 'Scrum Alliance', true),
('Certified Scrum Professional Product Owner', 'Scrum Alliance', true),
('Professional Scrum Master 1', 'scrum.org', true),
('Professional Scrum Master 2', 'scrum.org', true),
('Professional Scrum Master 3', 'scrum.org', true),
('Professional Scrum Product Owner 1', 'scrum.org', true),
('Professional Scrum Product Owner 2', 'scrum.org', true),
('Professional Scrum Product Owner 3', 'scrum.org', true),
('Professional Scrum Developer 1', 'scrum.org', true),
('Certified SAFe 4 Scrum Master', 'SAFe', true),
('Certified SAFe 5 Scrum Master', 'SAFe', true),
('Certified SAFe 4 Lean Portfolio Manager', 'SAFe', true),
Expand All @@ -30,20 +31,23 @@ INSERT INTO "Certification" ("name", "certBody", "verified") VALUES
('Certified Kubernetes Administrator', 'CNCF', true),
('Certified Kubernetes Security Specialist', 'CNCF', true),
('Associate Cloud Engineer', 'Google', true),
('Professional Cloud Developer', 'Google', true),
('Professional Cloud Architect', 'Google', true),
('Professional Cloud Security Engineer', 'Google', true),
('Professional Cloud Devops Engineer', 'Google', true),
('Professional Data Engineer', 'Google', true),
('Professional ML Engineer', 'Google', true),
('BigQuery Qualified Developer', 'Google', true),
('TensorFlow Developer', 'TensorFlow', true),
('AWS Certified Cloud Practitioner', 'AWS', true),
('AWS Certified Solutions Architect - Associate', 'AWS', true),
('AWS Certified Solutions Architect - Professional', 'AWS', true),
('AWS Certified Developer - Associate', 'AWS', true),
('AWS Certified SysOps Administrator - Associate', 'AWS', true),
('AWS Certified DevOps Engineer – Professional', 'AWS', true),
('AWS Certified Big Data – Specialty', 'AWS', true),
('AWS Certified Security – Specialty', 'AWS', true),
('AWS Certified DevOps Engineer - Professional', 'AWS', true),
('AWS Certified Big Data - Specialty', 'AWS', true),
('AWS Certified Security - Specialty', 'AWS', true),
('AWS Certified Machine Learning - Specialty', 'AWS', true),
('Microsoft Certified: Azure Administrator Associate', 'Microsoft', true),
('Microsoft Certified: Azure Data Scientist Associate', 'Microsoft', true),
('Microsoft Certified Solutions Associate: Cloud', 'Microsoft', true),
Expand Down Expand Up @@ -79,5 +83,7 @@ INSERT INTO "Certification" ("name", "certBody", "verified") VALUES
('Certificat de connaissance Numérique Responsable', 'INR', true),
('Offensive Security Certified Professional', 'Offensive Security', true),
('TOGAF 9 Certified', 'The Open Group', true),
('TOGAF 9 Foundation', 'The Open Group', true)
('TOGAF 9 Foundation', 'The Open Group', true),
('Lean Green Belt', 'APMG International', true),
('FinOps Certified Practitioner', 'The Linux Foundation', true)
ON CONFLICT DO NOTHING;

0 comments on commit 0332262

Please sign in to comment.