Valid Professional-Cloud-DevOps-Engineer Dumps shared by ExamDiscuss.com for Helping Passing Professional-Cloud-DevOps-Engineer Exam! ExamDiscuss.com now offer the newest Professional-Cloud-DevOps-Engineer exam dumps, the ExamDiscuss.com Professional-Cloud-DevOps-Engineer exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com Professional-Cloud-DevOps-Engineer dumps with Test Engine here:
You recently created a Cloud Build pipeline for deploying Terraform code stored in a GitHub repository. You make Terraform code changes in short-lived branches and sometimes use tags during development. You tag releases with a semantic version when they are ready for deployment. You require your pipeline to apply the Terraform code whenever there is a new release, and you need to minimize operational overhead. What should you do?
Correct Answer: B
To deploy only on new release tags, which follow a semantic versioning pattern (e.g., v1.2.3), you should use a tag filter with a regular expression matching semantic versions. From the official documentation: "You can configure Cloud Build to start a build automatically whenever there is a new tag in your source repository by using tag triggers." - Cloud Build Triggers Using a tag pattern like \d+\.\d+\.\d* ensures that builds only trigger on properly versioned release tags (minimizing unnecessary executions). This matches standard semver tags such as 1.0.0, 2.1.3, etc.