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

variable "role_name" {
  type        = string
  description = "Name of the role"
  default     = "business-intelligence-role"
}

variable "application_families_to_access" {
  type        = list(string)
  description = "List of application families to grant access to the role"
  default = [
    "business-intelligence",
  ]
}
