17 lines
431 B
HCL
17 lines
431 B
HCL
variable "aws_region" {
|
|
description = "AWS region for resources"
|
|
type = string
|
|
default = "us-east-2"
|
|
}
|
|
|
|
variable "backend_bucket_name" {
|
|
description = "Name of the S3 bucket for Terraform state"
|
|
type = string
|
|
default = "nvhi-atsila-tf-state"
|
|
}
|
|
|
|
variable "lock_table_name" {
|
|
description = "Name of the DynamoDB table for state locking"
|
|
type = string
|
|
default = "nvhi-atsila-locks"
|
|
} |