Model/infrastructure/terraform/variables.tf
2023-07-05 18:09:44 +01:00

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
}