variable "environment" {
  description = "Available values: dev, qa, prod."
  default     = "prod"
}

variable "aws_region" {
  description = "AWS region"
  default     = "us-east-1"
}

variable "application_family" {
  description = "The application family."
  default     = "data-platform"
}

variable "service_user_name" {
  description = "The name of the service user."
  default     = "sony_IST_data_feed"
}

variable "existing_policy_attachments" {
  description = "List of existing managed IAM policy names to attach to the service user."
  type        = set(string)
  default = [
    "S3-cucumbers-amazonV2-RO",
    "S3-cucumbers-GooglePlay-RO",
    "S3-cucumbers-Rhapsody-RO",
    "S3-pandora-usage-reporting-orchard-RO",
    "S3-prod-orcdbucket-feed-drop-AmazonAdSupported-RO",
    "S3-prod-orcdbucket-feed-drop-AmazonPrime-RO",
    "S3-prod-orcdbucket-feed-drop-AmazonUnlimited-RO",
  ]
}
