CompTIA Cloud+ (CV0-004) emphasizes reducing configuration errors through governance, change control, and automation—especially when using infrastructure as code (IaC) and deployment templates (for example, ARM, CloudFormation, Terraform). Opening pull requests (PRs) is a key DevOps control that helps prevent misconfigurations by enforcing peer review, standardized workflows, and automated validation before changes reach production. In a PR-based process, teams can require approvals, run CI checks (linting, policy-as-code validation, security scanning, and test deployments), and confirm that changes align with organizational standards and architecture requirements. This directly reduces the likelihood of accidental misconfigurations (wrong CIDR ranges, open security groups, incorrect IAM permissions, or missing tags).
By comparison, doing a git fetch (A) only updates local references and does not add quality controls. Using a web interface to edit files (C) can bypass local tooling and consistency checks, increasing risk. Committing directly to the main branch (D) removes review gates and increases the chance of untested or incorrect template changes being deployed. Therefore, PRs are the best option for minimizing misconfiguration risk.
Submit