variable "aws_region" { type = string } variable "project_name" { type = string } variable "environment" { type = string } variable "client_name" { type = string } # dynamoDB table variable "terraform_dynamodb_table" { type = object({ name = string hash_key = string read_capacity = string write_capacity = string attributes = list(object({ name = string type = string })) }) default = { name = "terraform-lock" hash_key = "LockID" read_capacity = 20 write_capacity = 20 attributes = [ { name = "LockID" type = "S" } ] } } # s3 bucket variable "terraform_s3_bucket" { type = object({ name = string }) default = { name = "terraform-state" } }