Sign in

Administrator / spring-boot-user-management-system · Files

Logo

GitLab

  • Back to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • spring-boot-user-management-system
  • terraform-api-gateway
  • variables.tf
  • Added the API gateway
    85a7f97a
    Administrator authored
    2025-10-23 13:39:45 +0800  
    Browse Code ยป
variables.tf 426 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
variable "aws_region" {
  description = "AWS region"
  type        = string
  default     = "us-east-1"
}

variable "api_name" {
  description = "API Gateway name"
  type        = string
  default     = "user-management-gateway"
}

variable "stage_name" {
  description = "API stage name"
  type        = string
  default     = "prod"
}

variable "nlb_url" {
  description = "K8s NLB service endpoint"
  type        = string
}