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

variable "group_name" {
  description = "Name of IAM group"
  default     = "collaborators"
}

variable "pre_existing_policy_names" {
  type        = list(string)
  default     = [
    "Secretsmanager-qa-ows-payee-payoneer-secrets-policy"
  ]
  description = "List of pre-existing IAM policy names to attach to the group"
}
