Topic 1 Question 160
Your company wants to standardize the creation and management of multiple Google Cloud resources using Infrastructure as Code. You want to minimize the amount of repetitive code needed to manage the environment. What should you do?
Develop templates for the environment using Cloud Deployment Manager.
Use curl in a terminal to send a REST request to the relevant Google API for each individual resource.
Use the Cloud Console interface to provision and manage all related resources.
Create a bash script that contains all requirement steps as gcloud commands.
解説
Reference: https://cloud.google.com/deployment-manager/docs/fundamentals (see templates)
ユーザの投票
コメント(10)
A You can use Google Cloud Deployment Manager to create a set of Google Cloud resources and manage them as a unit, called a deployment. For example, if your team's development environment needs two virtual machines (VMs) and a BigQuery database, you can define these resources in a configuration file, and use Deployment Manager to create, change, or delete these resources. You can make the configuration file part of your team's code repository, so that anyone can create the same environment with consistent results. https://cloud.google.com/deployment-manager/docs/quickstart
👍 31jmgf2021/03/11A. Develop templates for the environment using Cloud Deployment Manager.
👍 11GCP_Student12021/03/14A. According to this document https://cloud.google.com/solutions/infrastructure-as-code IaC (Infrastructure as code) tools for Google Cloud: Deployment Manager, Terraform, Puppet, Chef ...
👍 4TAvenger2021/03/14
シャッフルモード