Skip to content

NimTechnology

Trình bày các công nghệ CLOUD một cách dễ hiểu.

  • Kubernetes & Container
    • Docker
    • Kubernetes
      • Ingress
    • Helm Chart
    • Isito-EnvoyFilter
    • Apache Kafka
      • Kafka
      • Kafka Connect
      • Lenses
    • Vault
    • Longhorn – Storage
    • VictoriaMetrics
  • CI/CD
    • ArgoCD
    • ArgoWorkflows
    • Spinnaker
    • Jenkins
  • Coding
    • Terraform
      • GCP – Google Cloud
      • AWS – Amazon Web Service
    • Golang
    • Laravel
    • Jquery & JavaScript
    • Git
    • Selenium
  • Log & Monitor
    • Prometheus
    • Grafana
    • ELK
      • Kibana
      • Logstash
  • BareMetal
  • Toggle search form

[Terraform] Lesson 1: Terraform with Google Cloud

Posted on April 6, 2022April 18, 2022 By nim No Comments on [Terraform] Lesson 1: Terraform with Google Cloud

Contents

  • 1) Google Cloud Project – Service Account
  • 2) Google Provider & version
  • 3) Connect Terraform with GCP
    • 3.1) usernamepassword
    • 3.2) Cloud Shell VM
    • 3.3) Service Account

1) Google Cloud Project – Service Account

tạo 1 project.
Bạn diền project name và chú ý cái project ID nhé
sau đó click create

giờ kiểm tra lại chúng ta có thêm 1 project vừa mới tạo

Để tìm ra phần service account gồm 2 cách

Các 1 tìm kiềm

Cách 2 click step by step.

click để create.

2) Google Provider & version

Google Provider
Infrastructure provision inside GCP from Terraform
Terraform has multiple provider with different cloud

https://registry.terraform.io/providers/hashicorp/google/latest/docs

Giờ bạn tạo folder và file main.tf
terraform {
  required_providers {
    google = {
      source = "hashicorp/google"
      version = "3.85.0"
    }
  }
}

provider "google" {
  # Configuration options
}

cd thư mục bạn vừa tạo và có file main.tg
rồi chạy câu lệnh terraform init

3) Connect Terraform with GCP

3.1) usernamepassword

Chúng ta cần copy phần như ảnh

File main.tf sẽ có 1 chút thay đổi:

terraform {
  required_providers {
    google = {
      source = "hashicorp/google"
      version = "3.85.0"
    }
  }
}

provider "google" {
  # Configuration options
  project = "terraform-gcp-346216"
  region = "us-central1"
  zone = "us-central1-a"
}

resource google_storage_bucket "GCS1"{
  name = "bucket-from-tf-up-nimtechnology"
}
pass vào CMD
Lúc này trình duyệt sẽ mở

bạn chọn User mà bạn dụng Học GCP ấy

Giờ login thành công
thực hiện chọn project
Gõ 1 vài lệnh sàm sí
gcloud auth list

Sau đó mình chạy lệnh terraform thì lỗi

Mình chạy login lại

gcloud auth application-default login
Tạo được rồi nè.

XOng rồi thì bạn xoá luôn nhé

3.2) Cloud Shell VM

Để console có nhiều không gian hơn:
PS1=$

Có sẵn terraform nhé quý dị.
mkdir GCS
cd GCS/
nano main.tf
rồi bạn paste content của file main,tf vào
Gõ init đồ luôn
gcloud auth list
Đã được cài săn gcloud và login user luôn
terraform apply
GCS đã được tạo nếu bạn không thấy thì F5

3.3) Service Account

upload file key vào kế file main.tf
terraform {
  required_providers {
    google = {
      source = "hashicorp/google"
      version = "3.85.0"
    }
  }
}

provider "google" {
  # Configuration options
  project = "terraform-gcp-326702"
  region = "us-central1"
  zone = "us-central1-a"
  credentials = "keys.json"
}

resource google_storage_bucket "GCS1"{
  name = "bucket-from-tf-using-sa-nimtechnology"
}
terraform init
terraform plan
terraform apply

Bạn sẽ gặp lỗi này:
Error: googleapi: Error 403: terraform-gcp@terraform-gcp-346216.iam.gserviceaccount.com does not have storage.buckets.create access to the Google Cloud project., forbidden

Lúc này chúng ta cần add thêm role

Tiếp theo là nhớ xoá nhé anh em
GCP - Google Cloud, Terraform

Post navigation

Previous Post: [Jenkins] Lưu ý nho nhỏ trong jenkins
Next Post: [Grafana] Reset passwork grafana

More Related Articles

[Terraform] Lesson 9: Relational DB – Cloud SQL & Spanner with Terraform GCP - Google Cloud
[Terraform/GCP/K8s] How can we build/install the Kubernetes clusters (GKE) on Google Cloud. GCP - Google Cloud
[Terraform] Lesson 6: Google Cloud Function with Terraform GCP - Google Cloud
[Terraform] Lesson 10: NoSQL Database in GCP with Terraform GCP - Google Cloud
[Terraform] Lesson 5: Google Cloud Run with Terraform GCP - Google Cloud
[AWS] – Terraform Beginner – Lesson 1: Create a Free Account of AWS AWS - Amazon Web Service

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Tham Gia Group DevOps nhé!
Để Nim có nhiều động lực ra nhiều bài viết.
Để nhận được những thông báo mới nhất.

Recent Posts

  • [Argocd/Vault] Integrate Vault inside Argocd by the plugin July 1, 2022
  • [Vault] Using Service Acount of Kubernetes to login Vault system. June 28, 2022
  • Protected: My Assignment  June 24, 2022
  • [Spinnaker] Spinnaker writes too many logs – Reduce spinnaker log level June 22, 2022
  • [Jenkins] Jobs will be created automatically by Jenkins Job Builder June 20, 2022

Archives

  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021

Categories

  • BareMetal
  • CI/CD
    • ArgoCD
    • ArgoWorkflows
    • Jenkins
    • Spinnaker
  • Coding
    • Git
    • Golang
    • Jquery & JavaScript
    • Laravel
    • Selenium
    • Terraform
      • AWS – Amazon Web Service
      • GCP – Google Cloud
  • Kubernetes & Container
    • Apache Kafka
      • Kafka
      • Kafka Connect
      • Lenses
    • Docker
    • Helm Chart
    • Isito-EnvoyFilter
    • Kubernetes
      • Ingress
    • Longhorn – Storage
    • Vault
    • VictoriaMetrics
  • Log & Monitor
    • ELK
      • Kibana
      • Logstash
    • Grafana
    • Prometheus
  • Uncategorized
  • Admin

Copyright © 2022 NimTechnology.