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

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

variable "service_name" {
  description = "Service name for resources."
  type        = string
  default     = "break-glass"
}

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

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

# aws s3 ls s3://sme-core-cloud-compliance-centralized-ct-use1-logs/AWSLogs/o-bqioddgr91/009424872958/CloudTrail/us-east-1/2026/02/15/
variable "cloudtrail_logs_org_bucket" {
  default = "sme-core-cloud-compliance-centralized-ct-use1-logs"
}

variable "principal_org_id" {
  default = "o-bqioddgr91"
}

variable "test_account_id" {
  default = "009424872958"
}
