Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Fix GCP Project Var #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions examples/vault-cluster-private-with-public-lb/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@
# ---------------------------------------------------------------------------------------------------------------------

provider "google" {
project = var.gcp_project
project = var.gcp_project_id
region = var.gcp_region
}

terraform {
# The modules used in this example have been updated with 0.12 syntax, which means the example is no longer
# compatible with any versions below 0.12.
required_version = ">= 0.12"
}


# ---------------------------------------------------------------------------------------------------------------------
# DEPLOY THE VAULT SERVER CLUSTER
# ---------------------------------------------------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# These parameters must be supplied when consuming this module.
# ---------------------------------------------------------------------------------------------------------------------

variable "gcp_project" {
variable "gcp_project_id" {
description = "The name of the GCP Project where all resources will be launched."
type = string
}
Expand Down