02Name three things in the Terraform state file, and explain why it is a security artifact rather than a cache.▼medium★ EssentialNewHashiCorpJPMorgan ChaseAccenture3 repliesunlockedEveryone can say state maps config to reality. The follow-up that separates candidates is what else is in the file, and what that means for who may read it.Open full answer →
14Trace a database password from your Terraform pipeline to the resource. Where can it leak, and what closes each hole?▼hard★ EssentialNewJPMorgan ChaseGoldman SachsRazorpay○ sign insensitive = true stops the echo, not the storage. The complete answer walks the value through git, plan artifacts, state, and provider side effects, naming which mitigation closes which leak.Open full answer →
23New engineers cannot decrypt the Vault-encrypted group_vars. How did key handling rot, and what is the fix?▼mediumNewRed HatIBMTCS◆ premiumVault's weakness is the single shared password, not the AES256 underneath. The senior answer covers rekey ceremonies on offboarding, encrypt_string for readable diffs, labelled vault-ids per environment, and shrinking what needs encrypting at all.Open full answer →
35Terraform rotates the production database password tonight. Walk me through how every application survives the change.▼mediumNewRazorpayJPMorgan ChaseSAP◆ premiumRotation is an expand-contract migration for credentials: stage the new secret, prove every reader picked it up, revoke the old one, and treat the revocation as the test. The outage risk lives in clients and connection pools, not in Terraform.Open full answer →
24All stages green except the production deploy, which failed three runs in a row. Nobody changed anything. Where do you dig first?▼hardNewAccentureWalmart Global TechInfosys◆ premiumAn unchanged pipeline failing in one environment means the environment moved, not the code. Failures that start on an expiry boundary narrow the field to two suspects fast.Open full answer →
03An AWS key was committed to a public repo two hours ago. Walk me through the next hour.▼medium★ EssentialNewJPMorgan ChaseRazorpayGitLab2 repliesunlockedAn incident response question wearing a Git costume. The wrong instinct is to rewrite history first, and it costs you the hour that matters.Open full answer →
06Sealed Secrets, External Secrets, SOPS or Vault CSI? Pick one for a regulated environment.▼hardNewRazorpayJPMorgan ChaseGoldman Sachs2 repliesunlockedFour tools that solve the same sentence and differ on one question: where does the plaintext end up? In a regulated environment that question decides the answer.Open full answer →