Skip to content

Commit

Permalink
chore: set backups bucket location in examples (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
krtk6160 authored May 9, 2024
1 parent 963a6ff commit 6f37890
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions examples/gcp/inception/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ variable "tf_state_bucket_name" {}
variable "buckets_location" {
default = "US-EAST1"
}

variable "backups_bucket_location" {
default = "US-CENTRAL1"
}

variable "gcp_project" {}
variable "inception_sa" {}
variable "users" {
Expand All @@ -19,11 +24,12 @@ module "inception" {
source = "git::https://github.com/GaloyMoney/galoy-infra.git//modules/inception/gcp?ref=8a373e9"
# source = "../../../modules/inception/gcp"

name_prefix = var.name_prefix
gcp_project = var.gcp_project
inception_sa = var.inception_sa
tf_state_bucket_name = var.tf_state_bucket_name
buckets_location = var.buckets_location
name_prefix = var.name_prefix
gcp_project = var.gcp_project
inception_sa = var.inception_sa
tf_state_bucket_name = var.tf_state_bucket_name
buckets_location = var.buckets_location
backups_bucket_location = var.backups_bucket_location

users = var.users
}
Expand Down

0 comments on commit 6f37890

Please sign in to comment.