Associate Cloud Engineer Exam QuestionsBrowse all questions from this exam

Associate Cloud Engineer Exam - Question 272


Your company requires that Google Cloud products are created with a specific configuration to comply with your company’s security policies. You need to implement a mechanism that will allow software engineers at your company to deploy and update Google Cloud products in a preconfigured and approved manner. What should you do?

Show Answer
Correct Answer: D

To ensure that Google Cloud products are created with a specific configuration that complies with company security policies, it is best to use Infrastructure as Code (IaC) tools that allow for consistent, repeatable, and auditable configuration management. Terraform is an IaC tool that provides these capabilities through declarative configuration files. Creating Terraform modules utilizing the Google Cloud Terraform Provider will enable developers to deploy and manage Google Cloud resources in a preconfigured and approved manner, ensuring compliance with security policies, fostering modularity, reusability, and maintainability.

Discussion

1 comment
Sign in to comment
RuchiMishraOption: D
Jul 16, 2024

Here's why this is the most suitable solution: Infrastructure as Code (IaC): Terraform is an IaC tool that allows you to define and provision infrastructure resources using declarative configuration files. This approach ensures consistency in resource configuration across different deployments, making it easier to enforce security policies and compliance requirements. Modularity: Terraform modules promote reusability and maintainability. You can create modules for specific GCP products or configurations and share them within your organization. This reduces duplication of effort and ensures that all deployments adhere to the same standards.