variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the environment in"
}

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

variable "service_name" {
  default = "awal"
}

variable "iam_policy_arn" {
  description = "IAM Policy to be attached to role"
  type        = list(string)
  default = [
    "arn:aws:iam::437795906767:policy/S3-qa-orcd-awal-drop-data-integration-read-write-policy",
  ]
}

variable "bucket_name" {
  default = "orcd-awal-drop"
}

variable "domain_name" {
  description = "Name of domain"
  default     = "qaawal.com"
}
