File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -63,8 +63,8 @@ terraform {
63
63
64
64
65
65
provider "google" {
66
- project = var.project
67
- region = var.region
66
+ project = var.google_cloud_project_id
67
+ region = var.google_cloud_region
68
68
}
69
69
70
70
@@ -77,8 +77,8 @@ locals {
77
77
78
78
module "octue_django_api" {
79
79
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
82
82
resource_affix = var.resource_affix
83
83
environment = local.environment
84
84
}
@@ -87,7 +87,7 @@ module "octue_django_api" {
87
87
module "octue_django_api_buckets" {
88
88
source = "git::github.com/octue/terraform-octue-django-api-buckets.git?ref=0.1.0"
89
89
server_service_account_email = module.octue_django_api.server_service_account.email
90
- project = var.project
90
+ project = var.google_cloud_project_id
91
91
resource_affix = var.resource_affix
92
92
environment = local.environment
93
93
}
@@ -96,13 +96,13 @@ module "octue_django_api_buckets" {
96
96
``` terraform
97
97
# variables.tf
98
98
99
- variable "project " {
99
+ variable "google_cloud_project_id " {
100
100
type = string
101
101
default = "<your-google-project-id>"
102
102
}
103
103
104
104
105
- variable "region " {
105
+ variable "google_cloud_region " {
106
106
type = string
107
107
default = "<your-google-project-region>"
108
108
}
You can’t perform that action at this time.
0 commit comments