Skip to content

Commit 886ba54

Browse files
committed
DOC: Fix inaccuracies in readme
1 parent c8bf3d8 commit 886ba54

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ terraform {
6363
6464
6565
provider "google" {
66-
project = var.project
67-
region = var.region
66+
project = var.google_cloud_project_id
67+
region = var.google_cloud_region
6868
}
6969
7070
@@ -77,8 +77,8 @@ locals {
7777
7878
module "octue_django_api" {
7979
source = "git::github.com/octue/terraform-octue-django-api.git?ref=0.1.0"
80-
project = var.project
81-
region = var.region
80+
project = var.google_cloud_project_id
81+
region = var.google_cloud_region
8282
resource_affix = var.resource_affix
8383
environment = local.environment
8484
}
@@ -87,7 +87,7 @@ module "octue_django_api" {
8787
module "octue_django_api_buckets" {
8888
source = "git::github.com/octue/terraform-octue-django-api-buckets.git?ref=0.1.0"
8989
server_service_account_email = module.octue_django_api.server_service_account.email
90-
project = var.project
90+
project = var.google_cloud_project_id
9191
resource_affix = var.resource_affix
9292
environment = local.environment
9393
}
@@ -96,13 +96,13 @@ module "octue_django_api_buckets" {
9696
```terraform
9797
# variables.tf
9898
99-
variable "project" {
99+
variable "google_cloud_project_id" {
100100
type = string
101101
default = "<your-google-project-id>"
102102
}
103103
104104
105-
variable "region" {
105+
variable "google_cloud_region" {
106106
type = string
107107
default = "<your-google-project-region>"
108108
}

0 commit comments

Comments
 (0)