variable "profile" {
  type        = string
  description = "This is the AWS profile name as set in the shared credentials file."
}

variable "region" {
  type        = string
  description = "This is the AWS region."
  default     = "us-east-1"
}

variable "shared_credentials_file" {
  type        = string
  description = "This is the path to the shared credentials file."
  default     = "~/.aws/credentials"
}

variable "skip_metadata_api_check" {
  type        = string
  description = "Skip the AWS Metadata API check."
  default     = "~/.aws/credentials"
}

variable "env_prefix" {
  type        = string
  description = "This is a name prefix."
}

variable "platform_name" {
  type        = string
  description = "This is a name of the platform."
  default     = "Delphi"
}

variable "lambda_role_name" {
  type        = string
  description = "IAM role to use with Lambda function"
}

variable "lambda_s3_bucket_name" {
  type        = string
  description = "Name of the S3 bucket"
}

variable "lambda_s3_region" {
  type        = string
  description = "Region where S3 bucket located"
  default     = "us-east-1"
}

variable "lambda_s3_prefix" {
  type        = string
  description = "Prefix which will be added to each file in S3 bucket."
  default     = "partneremails/"
}

variable "lambda_spotify_credentials_secret_id" {
  type        = string
  description = "Name of a secret with Spotify credentials"
  default     = "delphi/dev/slz/spotify_v2"
}
