GCP Quick Start Unsupported argument error on terraform plan command

Hi @simonbreton

Just having a look into this problem at the moment - Can you try out using the versions.tf config below ?

Tested using - 
Terraform v1.1.9

terraform {
  required_version = "~> 1"

  required_providers {
    google = {
      source  = "hashicorp/google"
      version = "~> 3.90.1"
    }
    random = {
      source  = "hashicorp/random"
      version = "~> 3.1.0"
    }
  }
}
2 Likes