19 lines
355 B
Terraform
19 lines
355 B
Terraform
|
|
variable "aws_region" {
|
||
|
|
description = "AWS region for resources"
|
||
|
|
type = string
|
||
|
|
default = "us-east-1"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "db_password" {
|
||
|
|
description = "PostgreSQL database password"
|
||
|
|
type = string
|
||
|
|
sensitive = true
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "environment" {
|
||
|
|
description = "Environment name"
|
||
|
|
type = string
|
||
|
|
default = "production"
|
||
|
|
}
|
||
|
|
|