We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3470d63 commit dd7e271Copy full SHA for dd7e271
provider.tf
@@ -0,0 +1,4 @@
1
+provider "google" {
2
+ project = var.project_id
3
+ region = var.region
4
+}
variables.tf
@@ -1,3 +1,13 @@
+variable "project_id" {
+ type = string
+ description = "The GCP project ID."
5
+
6
+variable "region" {
7
8
+ description = "The GCP region where resources will be deployed."
9
10
11
variable "deployment_name" {
12
type = string
13
description = "A unique prefix for all deployed resources. If not provided, a random prefix will be generated."
0 commit comments