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

variable "environment" {
  type        = string
  description = "The environment"
  default     = "shared"
}

variable "service_name" {
  type        = string
  description = "The name of the service."
  default     = "datadog-software-catalog"
}

variable "application_family" {
  type        = string
  description = "The name of the application family."
  default     = "devops"
}

variable "secrets_manager_secret_names" {
  type        = list(string)
  description = "List of secrets manager secrets to create"
  default = [
    "SENTRY_AUTH_TOKEN",
    "SONAR_TOKEN",
  ]
}

variable "resource_explorer_view_arn" {
  type        = string
  description = "The ARN of the Resource Explorer view to grant access to."
  default     = "arn:aws:resource-explorer-2:us-east-1:970903126758:view/all-orchard-resources/eb8193f7-9c27-48d2-8b8b-1767e3e30298"
}
