mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
29 lines
No EOL
599 B
HCL
29 lines
No EOL
599 B
HCL
variable stage {
|
|
description = "The stage of the environment"
|
|
type = string
|
|
}
|
|
|
|
variable "profile" {
|
|
description = "AWS profile to use"
|
|
type = string
|
|
}
|
|
|
|
variable "region" {
|
|
description = "AWS region"
|
|
type = string
|
|
}
|
|
|
|
variable allocated_storage {
|
|
description = "The allocated storage in gigabytes"
|
|
type = number
|
|
}
|
|
|
|
variable instance_class {
|
|
description = "The instance type of the RDS instance"
|
|
type = string
|
|
}
|
|
|
|
variable database_name {
|
|
description = "The name of the database to create when the DB instance is created"
|
|
type = string
|
|
} |