survey-extraction/deployment/database/variables.tf
2025-07-18 15:07:50 +00:00

17 lines
332 B
HCL

variable region {
type = string
default = "eu-west-2"
description = "AWS region"
}
variable "profile" {
description = "AWS profile to use"
type = string
default = "Jun-te"
}
variable allocated_storage {
description = "The allocated storage in gigabytes"
type = number
default = 20
}