variable "aws_profile" {
  type        = string
  description = "The name of the AWS profile as set in the shared credentials file."
  default     = "gdb-delphi-dev"
}

variable "aws_region_id" {
  type        = string
  description = "The id of the region in AWS"
  default     = "us-east-1"
}

variable "platform" {
  type = map(string)

  default = {
    name                = "Apollo"
    prefix              = "dev"
    environment         = "Development"
    short_platform_name = "APL"
  }
}

variable "tables_map" {
  #type = list(map(any))
  type = map(object({
    partition_key = string
    sorting_key   = string
    attributes = list(object({
      name = string
      type = string })
    )
    })
  )
}
