variable region {
  default     = "us-east-1"
}

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

variable vpc_security_group_ids {
  type        = "list"
  description = "Security group IDs for the VPC where the lambdas will execute"
}

variable vpc_subnet_ids {
  type        = "list"
  description = "VPC subnet IDs where the lambdas will execute"
}

variable s3_event_bucket_name {
  default     = "looker-gfk"
}

variable s3_event_filter_prefix {
  default     = "prod"
}

variable gfk_ftp_host {
  default     = "ftp.gfk-e.com"
}

variable gfk_ftp_username {
  default     = ""
}

variable gfk_ftp_password {}

variable gfk_ftp_path {
  default     = "IN"
}

variable iam_policy_file_enabled {
    default   = false
}
