variable "project" {
  type        = string
  description = "The ID of the GCP project."
  default     = "awal-gsheets-automation"
}

variable "aws_region" {
  type        = string
  description = "The AWS region (for terraform state)"
  default     = "us-east-1"
}

variable "gcp_region" {
  type        = string
  description = "The GCP region"
  default     = "us-east1"
}

variable "api_list" {
  default = [
    "sheets.googleapis.com",
    "drive.googleapis.com",
  ]
}

variable "service_user_roles" {
  default = []
}
