variable "environment" {
  default = "dev"
}

variable "service_name" {
  default = "ows-account"
}

variable "application_family" {
  default = "platform"
}

variable "aws_region" {
  default = "us-east-1"
}

variable "team_name" {
  default = "devops"
}

variable "load_balancer_access_logs_s3_bucket_name" {
  default = "aws-logs-103233932089-us-east-1"
}

variable "public_allowed_ip_ranges" {
  type = list(string)
  default = [
    "207.237.185.0/26",
  ]
  description = "List of public allowed IP ranges"
}


locals {
  subnet_ids = { for subnet in data.aws_subnet.public_subnet_details : subnet.availability_zone => subnet.id if subnet.available_ip_address_count > 32 }
}