Terraform with GCP (Google Cloud Platform)

preview_player
Показать описание
Learn how to provision resources in GCP (Google Cloud Platform) using Terraform.
Рекомендации по теме
Комментарии
Автор

Great....Easily understandable. One thing I liked is he gave only the required permissions to the service account😀.

varunmb
Автор

Very nicely explained to create a VM using terraform on GCP. Thanks. Really I loved and enjoyed it. Keep it up.

soniadhariwal
Автор

Please more terraform - gcp content. there are very limited resources online. thanks :)

rootifera
Автор

Hello Houssem, Very concise, to the point and very useful! It worked for me. Awesome and quality video. Thank you Sir!

shashikantdivekar
Автор

Really helpful. Well explained, to the point and easy to understand.
Thanks.

utubmbr
Автор

Hey Houssem, First of all would like you to say Thank You for these awesome video Posting.
I have subscribed 5 course of you on Udemy, however i am looking for a awesome full course of terraform on gcp, would request you to please create a course on terraform on GCP. I really need it.
Thanks in advance for you action.

mukeshkumar-hecq
Автор

Thanks for this video, Its really helpful!

DineshGupta-dqjj
Автор

Hi guy, do you know how to connect instance with azure devops from pipeline?

yyrn
Автор

This code gets me error message that resources like interface are not properly defined. Below code works:

provider "google" {
credentials = file("service-account.json")
project = "terraforprojekat"
region = "europe-central2"
zone = "europe-central2-b"
}


resource "google_compute_instance" "vm_instance" {
name = "terraform-instance"
machine_type = "f1-micro"

boot_disk {
initialize_params {
image = "debian-cloud/debian-9"
}
}

network_interface {
network = "default"

access_config {
// Ephemeral IP
}
}

}

TheDusansky
Автор

Hi Dellai, Can we create infrastructure using terraform in aws or gcp from aws lambda function? Is it possible?

maheshshinde
Автор

it will be good to make this template available for verification clearity for baby like me. Howerver, i have learn so much from you.

emmanueloluwayemisi
Автор

very helpful Dellai, keep going. Can you please do a session on airflow DAG's deployment using jenkins(CI/CD).

ashoksuperb
Автор

Hiya! Love your videos, very informative! Do you know how to obtain text from a file inside a gcp instance that was created with terraform and use that as a variable in the main terraform file? Any advice would be appreciated :) Thanks

mindovermatter
Автор

Thanks for this tutorial, very helpful 🙏🙏🙏🙏

easy-waytolearn
Автор

in which editor you have written this code. is it vim/vi or something else as I am trying it in vi but indentation is just plain.

kavishsharma
Автор

Big thanks you for your help ! peace.

lionelkouame
Автор

Good content here, perfectly made keep it up

mugerwajosephlumu
Автор

Will I get a job if I master Linux, Google Cloud Platform & Terraform ?

MarsVlogSoon
Автор

could you please provide the link of Gitub code

noneonone
Автор

Hi Houssem,
When i try run the command "terraform plan" i got the below error, i copied the main.tf from your git hub

Error: Unsupported argument

on main.tf line 21, in resource "google_compute_instance" "vm_instance":
21: access_config = {

An argument named "access_config" is not expected here. Did you mean to define
a block of type "access_config"?

chandrasekharmatcha