=====authentication===== iam and admin =====Terraform Providers===== [[https://registry.terraform.io/browse/providers|Providers overview]]\\ [[https://registry.terraform.io/providers/hashicorp/google/latest/docs|GCP docs]]\\ [[https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/compute_instance|compute instance]] first example main.tf: resource "google_compute_instance" "default" { name = "test" machine_type = "e2-micro" zone = "europe-central1-a" boot_disk { initialize_parames{ image = "debian-cloud/debian-9" } } } terraform apply -> execute a post to Google Cloud API 1