fix: tf backend can't be a variable

This commit is contained in:
Noah Masur
2024-05-05 16:36:34 -04:00
parent 5bd81813cb
commit 9ebdfa1071
3 changed files with 4 additions and 15 deletions

View File

@ -1,7 +1,5 @@
terraform {
backend "s3" {
bucket = var.terraform_state_bucket
key = var.terraform_state_key
region = "us-east-1"
dynamodb_table = "terraform-state-lock"
}

View File

@ -8,13 +8,3 @@ variable "images_bucket" {
description = "Name of the bucket in which to store the NixOS VM images."
type = string
}
variable "terraform_state_bucket" {
description = "Name of the bucket in which to store the Terraform state information."
type = string
}
variable "terraform_state_key" {
description = "Path of the file in which to store the Terraform state information."
type = string
}