The DevOps DropSign in
Interview HubTopicsCertification PrepSavedAchievementsGlobal LeaderboardLearnTech BlogsTech News

Platform & Architecture

Platform engineering, system design and infrastructure shape.

TypeEverythingQuestions7Drills10Blogs6News15
LevelAll levelsIntermediate2Advanced4Expert1

2 items at intermediate level · all topics

  • QuestionDevOps·intermediate·4 min+25 XP

    Two engineers changed the same Terraform file and Git reports a conflict. How do you resolve it?

    Resolve the text conflict, then prove the result is actually correct with terraform validate and a plan. A clean Git merge only means the file parses in a human's head, it says nothing about whether the merged config destroys a database.

    #Git#Terraform#IaC#Infrastructure
  • QuestionDevOps·intermediate·4 min+25 XP

    Your deployment system needs to know exactly which Git commit is running in production. How do you design that?

    Stamp the commit SHA into the artifact at build time and expose it at runtime. Build once per commit, tag and deploy by digest, and serve a /version endpoint, so the answer to "what's live?" comes from the running process itself, not from a pipeline log someone has to go dig up.

    #Git#Deployment#Observability#Architecture