variable "application_family" {
  type    = string
  default = "devops"
}

variable "team_name" {
  type    = string
  default = "devops"
}

variable "aws_region" {
  description = "The AWS region to create the logs bucket in"
  default     = "us-east-1"
}

variable "environment" {
  description = "The environment to create the logs bucket for"
  default     = "shared"
}

variable "account_group" {
  description = "The name of the account group that the account belongs to"
  default     = "orcd"
}

variable "security_lake_account_id" {
  description = "AWS account ID of the Security Lake account"
  type        = string
  default     = "350195739529"
}

variable "security_lake_iam_role_name" {
  description = "Name for IAM resources. This naming convention was provided to us by Infosec"
  type        = string
  default     = "SecurityLake-SourceRead"
}
