Skip to content

Commit

Permalink
feat: add 'IaC' sub-category with 'Terraform' content under 'devops' …
Browse files Browse the repository at this point in the history
…category (#2208)

Signed-off-by: Esteban Baron <estebanbaron.pro@gmail.com>
  • Loading branch information
EstebanBAR0N authored Dec 17, 2023
1 parent 64e8125 commit b9aec54
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/TopBar/CategoryDescriptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ const categoryDescriptions: CategoryDescriptions = {
'Kubernetes is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications.',
microservices:
'Microservices are a software development technique—a variant of the service-oriented architecture (SOA) architectural style that structures an application as a collection of loosely coupled services.',
IaC: 'Infrastructure as Code (IaC) is the managing and provisioning of infrastructure through code instead of through manual processes.',

// AI
'artificial intelligence':
Expand Down
5 changes: 5 additions & 0 deletions database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,11 @@ export const sidebarData: ISidebar[] = [
url: '/microservices',
resources: DB.microservices,
},
{
name: 'IaC',
url: '/iac',
resources: DB.iac,
},
],
},
{
Expand Down
16 changes: 16 additions & 0 deletions database/devops/iac.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[
{
"name": "Terraform Documentation",
"description": "Terraform is an infrastructure as code tool that lets you build, change, and version infrastructure safely and efficiently. The official Terraform documentation serves as a comprehensive resource for users, offering detailed information, guidance, and best practices for effectively using Terraform.",
"url": "https://developer.hashicorp.com/terraform/docs",
"category": "devops",
"subcategory": "iac"
},
{
"name": "Terraform Tutorial",
"description": "This is a comprehensive Terraform tutorial for beginners.",
"url": "https://www.youtube.com/watch?v=vwn77cUarTs&list=PL8HowI-L-3_9bkocmR3JahQ4Y-Pbqs2Nt&index=1",
"category": "devops",
"subcategory": "iac"
}
]
1 change: 1 addition & 0 deletions database/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export { default as docker } from './devops/docker.json'
export { default as jenkins } from './devops/jenkins.json'
export { default as kubernetes } from './devops/kubernetes.json'
export { default as microservices } from './devops/microservices.json'
export { default as iac } from './devops/iac.json'

// languages
export { default as javascript } from './languages/javascript.json'
Expand Down

1 comment on commit b9aec54

@vercel
Copy link

@vercel vercel bot commented on b9aec54 Dec 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.