WIP: fix compute and network terraform plan

This commit is contained in:
2025-12-04 09:16:00 +01:00
parent f0f493c212
commit 763a7ac7a5
2 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ terraform {
}
provider "google" {
project = var.project_name
project = var.project_id
region = var.region
}

View File

@@ -1,5 +1,5 @@
variable "project_name" {
description = "nom du projet GCP"
variable "project_id" {
description = "ID du projet GCP"
type = string
default = "mon-projet"
}