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

variable "cluster_name" {
  description = "EKS cluster name"
  type        = string
  default     = "comic-website-prod"
}

variable "vpc_name" {
  description = "VPC name"
  type        = string
  default     = "comic-website-prod-vpc"
}

variable "namespace" {
  description = "Kubernetes namespace"
  type        = string
  default     = "user-management"
}

variable "service_name" {
  description = "Kubernetes service name"
  type        = string
  default     = "user-management-service"
}

variable "api_gateway_name" {
  description = "API Gateway name"
  type        = string
  default     = "user-management-api"
}

variable "environment" {
  description = "Environment name"
  type        = string
  default     = "prod"
}

variable "domain_name" {
  description = "Custom domain name for API Gateway"
  type        = string
  default     = null
}

variable "create_waf" {
  description = "Whether to create WAF protection"
  type        = bool
  default     = true
}

variable "enable_api_key" {
  description = "Whether to enable API Key authentication"
  type        = bool
  default     = false
}

variable "tags" {
  description = "Additional tags for all resources"
  type        = map(string)
  default     = {}
}