Skip to content

Commit

Permalink
chore: allow setting backups bucket name (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
krtk6160 authored Nov 5, 2024
1 parent 2547d38 commit 2a35688
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/inception/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ variable "tf_state_bucket_name" {}
variable "buckets_location" {}
variable "tf_state_bucket_policy" { default = null }
variable "backups_bucket_location" {}
variable "backups_bucket_name" {}

variable "users" {
type = list(object({
Expand All @@ -48,7 +49,7 @@ locals {
name_prefix = var.name_prefix
tf_state_bucket_name = var.tf_state_bucket_name
tf_state_bucket_location = var.buckets_location
backups_bucket_name = "${local.name_prefix}-backups"
backups_bucket_name = var.backups_bucket_name
backups_bucket_location = var.backups_bucket_location
project = var.gcp_project
inception_sa = var.inception_sa
Expand Down

0 comments on commit 2a35688

Please sign in to comment.