variable "environment" {
  description = "Environment, e.g. dev, qa, prod"
}

variable "service_name" {
  description = "Name of service"
  default     = "aws-risk-creds-exposed"
}

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

variable "application_family" {
  description = "The application family"
  default     = "devops"
}

variable "additional_tags" {
  type        = map(string)
  description = "Optional map of additional tags to set on resources. These will be combined with programmatically set required tags."
  default     = {}
}

variable "sns_kms_master_key_id" {
  type        = string
  description = "ID of the KMS key for SNS encryption"
}

variable "logs_retention_in_days" {
  type        = number
  description = "AWS CloudWatch log group logs retention in days."
  default     = 365
}

variable "notification_topic_subscription_endpoint" {
  default = "orcd-aws-admins@theorchard.com"
}
