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

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

variable "aws_managed_policy_attachments" {
  description = "List of AWS-managed policies to attach to generic IAM group"
  default     = []
}
