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

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

variable "service_name" {
  description = "Name of service."
  type        = string
  default     = "checkov"
}

variable "application_family" {
  description = "Application family to which this service belongs."
  type        = string
  default     = "devops"
}

variable "trusted_principals" {
  description = "List of IAM users or roles which can assume Checkov's access role."
  type        = list(string)
  default = [
    "arn:aws:iam::437795906767:role/prod-jenkins-aws-pipeline-agent",
  ]
}

locals {
  tags = {
    terraformed        = true
    environment        = var.environment
    application_family = var.application_family
  }
}
