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

variable "s3_buckets_to_write_access" {
  type        = map(string)
  description = "Map of S3 buckets and paths within that bucket to which this group will receive write access. Not R/W."
  default = {
    "prod-orcd-intralabel-ingest" : "*",
  }
}
