mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-05-22 11:29:36 +00:00
26 lines
No EOL
529 B
HCL
26 lines
No EOL
529 B
HCL
variable "aws_region" {
|
|
description = "AWS region to deploy resources"
|
|
default = "us-west-2"
|
|
}
|
|
|
|
variable "environment" {
|
|
description = "Environment name (dev, staging, prod)"
|
|
type = string
|
|
}
|
|
|
|
variable "vpc_id" {
|
|
description = "VPC ID where resources will be deployed"
|
|
type = string
|
|
}
|
|
|
|
variable "db_username" {
|
|
description = "Database username"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "db_password" {
|
|
description = "Database password"
|
|
type = string
|
|
sensitive = true
|
|
} |