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

variable "environment" {
  type        = string
  description = "Deployment environment"
  default     = "qa"
}

variable "application_family" {
  type        = string
  description = "Application family this role belongs to"
  default     = "mobile"
}

variable "team_name" {
  type        = string
  description = "Owning team name"
  default     = "mobile-suite"
}

variable "role_name" {
  type        = string
  description = "Name of the IAM role"
  default     = "mobile-role"
}

variable "application_families_to_access" {
  type        = list(string)
  description = "Application families this role can access"
  default     = ["mobile"]
}
