diff --git a/src/lib/assets/tools/terraform.svg b/src/lib/assets/tools/terraform.svg new file mode 100644 index 0000000..75b5e11 --- /dev/null +++ b/src/lib/assets/tools/terraform.svg @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/src/lib/content/timeline.ts b/src/lib/content/timeline.ts index d7011a9..ce88668 100644 --- a/src/lib/content/timeline.ts +++ b/src/lib/content/timeline.ts @@ -20,6 +20,12 @@ export type TimelineItem = { }; const timeline: TimelineItem[] = [ + { + title: 'Azure Network Engineer Associate (AZ-700)', + subTitle: 'Microsoft', + icon: Badge, + startYear: 2024 + }, { title: 'Azure Administrator Associate (AZ-104)', subTitle: 'Microsoft', diff --git a/src/lib/content/tools.ts b/src/lib/content/tools.ts index 4bd086d..7e10591 100644 --- a/src/lib/content/tools.ts +++ b/src/lib/content/tools.ts @@ -46,6 +46,7 @@ import slackLogo from '$lib/assets/tools/slack.svg'; import nmapLogo from '$lib/assets/tools/nmap.svg'; import dBeaverLogo from '$lib/assets/tools/dbeaver.svg'; import openTofuLogo from '$lib/assets/tools/opentofu.svg'; +import terraformLogo from '$lib/assets/tools/terraform.svg'; import gitLensLogo from '$lib/assets/tools/gitlens.png?enhanced'; export { @@ -540,6 +541,15 @@ const tools: Tool[] = [ url: 'https://opentofu.org', enhanced: false }, + { + name: 'Terraform', + tagLine: 'Infrastructure as Code Tool', + description: + 'Terraform is infrastructure as code software tool that provides a consistent CLI workflow to manage hundreds of cloud services.', + logo: terraformLogo, + url: 'https://opentofu.org', + enhanced: false + }, { name: 'GitLens', tagLine: 'Git Extension for Visual Studio Code',