
시작하기 전에
- 실습에서는 정해진 기간 동안 Google Cloud 프로젝트와 리소스를 만듭니다.
- 실습에는 시간 제한이 있으며 일시중지 기능이 없습니다. 실습을 종료하면 처음부터 다시 시작해야 합니다.
- 화면 왼쪽 상단에서 실습 시작을 클릭하여 시작합니다.
Apply the changes in Terraform
/ 100
In this lab, you create an HTTPS load balancer to forward traffic to a custom URL map. The URL map sends traffic to the region closest to you with static assets being served from a Cloud Storage bucket. The TLS key and certificate is generated by Terraform using the TLS provider.
The following is a diagram of the architecture you create as part of this lab:
In this lab, you learn how to perform the following tasks:
Read these instructions. Labs are timed and you cannot pause them. The timer, which starts when you click Start Lab, shows how long Google Cloud resources are made available to you.
This hands-on lab lets you do the lab activities in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials you use to sign in and access Google Cloud for the duration of the lab.
To complete this lab, you need:
Click the Start Lab button. If you need to pay for the lab, a dialog opens for you to select your payment method. On the left is the Lab Details pane with the following:
Click Open Google Cloud console (or right-click and select Open Link in Incognito Window if you are running the Chrome browser).
The lab spins up resources, and then opens another tab that shows the Sign in page.
Tip: Arrange the tabs in separate windows, side-by-side.
If necessary, copy the Username below and paste it into the Sign in dialog.
You can also find the Username in the Lab Details pane.
Click Next.
Copy the Password below and paste it into the Welcome dialog.
You can also find the Password in the Lab Details pane.
Click Next.
Click through the subsequent pages:
After a few moments, the Google Cloud console opens in this tab.
Cloud Shell is a virtual machine that is loaded with development tools. It offers a persistent 5GB home directory and runs on the Google Cloud. Cloud Shell provides command-line access to your Google Cloud resources.
Click Activate Cloud Shell at the top of the Google Cloud console.
Click through the following windows:
When you are connected, you are already authenticated, and the project is set to your Project_ID,
gcloud
is the command-line tool for Google Cloud. It comes pre-installed on Cloud Shell and supports tab-completion.
Output:
Output:
gcloud
, in Google Cloud, refer to the gcloud CLI overview guide.
You can use Gemini Code Assist in an integrated development environment (IDE) such as Cloud Shell to receive guidance on code or solve problems with your code. Before you can start using Gemini Code Assist, however, you need to enable it.
In the Cloud Shell Editor, navigate to Cloud Code > Help and Feedback > Change Settings.
In the Settings, search for Gemini Code Assist.
Locate and ensure that the checkbox is selected for Geminicodeassist: Enable, and close the Settings.
Click Cloud Code - No Project in the status bar at the bottom of the screen.
Authorize the plugin as instructed. If a project is not automatically selected, click Select a Google Cloud Project, and choose
Verify that your Google Cloud project (
terraform-google-lb-http
repository:multi-backend-multi-mig-bucket-https-lb
directory:To help you be more productive while minimizing context switching, Gemini Code Assist provides AI-powered smart actions directly in your code editor. In this section, you decide to use Gemini Code Assist to help you modify some resources with Terraform.
In the Cloud Shell Editor's file Explorer, navigate to terraform-google-lb-http > examples > multi-backend-multi-mig-bucket-https-lb > main.tf.
Open the main.tf
configuration file. This action enables Gemini Code Assist, as indicated by the presence of the icon in the upper-right corner of the editor.
Click the Gemini Code Assist: Smart Actions icon on the toolbar.
You want to add the arguments create_ssl_certificate
and managed_ssl_certificate_domains
to your gce-lb-https
module in the configuration file main.tf
.
main.tf
configuration file, paste the following prompt into the Gemini Code Assist inline text field that opens from the toolbar.To prompt Gemini Code Assist to modify the code accordingly, press ENTER.
When prompted in the Gemini Diff view, click Accept.
The updated arguments for the "gce-lb-https" module in the main.tf configuration file now looks something like this:
In the Cloud Shell Editor, still in the same directory, navigate to variables.tf
. As before, notice the icon in the upper-right corner of the editor.
Click the Gemini Code Assist: Smart Actions icon on the toolbar.
To update the region definitions in the variables.tf
file, paste the following prompt into the Gemini Code Assist inline text field that opens from the toolbar.
To prompt Gemini to modify the code accordingly, press ENTER.
When prompted in the Gemini Diff view, click Accept.
The updated region definitions in the variable blocks in the file variables.tf
now look as follows:
The terraform init
command is used to initialize a working directory containing Terraform configuration files. This command performs several different initialization steps to prepare a working directory for use. This command is always safe to run multiple times, to bring the working directory up to date with changes in the configuration.
Example output:
The terraform plan
command is used to create an execution plan. Terraform performs a refresh, unless explicitly disabled, and then determines what actions are necessary to achieve the desired state specified in the configuration files.
This command is a convenient way to check whether the execution plan for a set of changes matches your expectations without making any changes to real resources or the state. For example, terraform plan
might be run before committing a change to version control, to create confidence that it will behave as expected.
Example output:
The optional -out
argument can be used to save the generated plan to a file for later execution with terraform apply
.
Example output:
Take note of the saved Terraform plan (tfplan
).
The terraform apply
command is used to apply the changes required to reach the desired state of the configuration, or the pre-determined set of actions generated by a terraform plan execution plan.
Example output (yours will differ):
Verify the resources created by Terraform:
In the Cloud console, from the Navigation menu () click View All Products > Network services > Load Balancing.
Wait until you see the green checkmark in the Backends column.
Click on the ml-bk-ml-mig-bkt-s-lb load balancer and check its details.
EXTERNAL_IP
link that is returned to open the load balancer URL in a new browser tab. It takes a few minutes to load.You should see the Google Cloud logo and instance details from the group closest to your geographical region.
Click Check my progress to verify the objective.
group1
, group2
and group3
.Your final URLs should look as follows (make sure to replace EXTERNAL_IP
with your load balancer IP): https://EXTERNAL_IP/group1
.
group1
: You should see the Google Cloud logo and instance details from the group in https://EXTERNAL_IP/group2
group2
: You should see the Google Cloud logo and instance details from the group in https://EXTERNAL_IP/group3
group3
: You should see the Google Cloud logo and instance details from the group in In this lab, you learned how to configure load balancing modules in Terraform in conjunction with Gemini Code Assist. You then used the modules to create a global HTTPS Content-Based Load Balancer, and used it to test its response to the group closest to your geographical region.
...helps you make the most of Google Cloud technologies. Our classes include technical skills and best practices to help you get up to speed quickly and continue your learning journey. We offer fundamental to advanced level training, with on-demand, live, and virtual options to suit your busy schedule. Certifications help you validate and prove your skill and expertise in Google Cloud technologies.
Manual Last Updated September 2, 2025
Lab Last Tested September 2, 2025
Copyright 2025 Google LLC. All rights reserved. Google and the Google logo are trademarks of Google LLC. All other company and product names may be trademarks of the respective companies with which they are associated.
현재 이 콘텐츠를 이용할 수 없습니다
이용할 수 있게 되면 이메일로 알려드리겠습니다.
감사합니다
이용할 수 있게 되면 이메일로 알려드리겠습니다.
한 번에 실습 1개만 가능
모든 기존 실습을 종료하고 이 실습을 시작할지 확인하세요.