variable "aws_profile" {
  type        = string
  description = "The name of the AWS profile as set in the shared credentials file."
  default     = "gdb-prodhub-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                = "Ecommerce"
    prefix              = "prod"
    environment         = "Production"
    short_platform_name = "ECMR"
  }
}

variable "fivetran_aws_account_id" {
  type        = string
  description = ""
}

variable "fivetran_aws_external_id" {
  type        = string
  description = ""
}

variable "smf_locations_urls" {
  type    = list(string)
  default = []
}
