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
  • modified
    3ff3bc45
    Administrator authored
    2025-10-23 15:16:00 +0800  
    Browse Code ยป
variables.tf 337 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
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"
}