fischerX/infra/terraform/modules/rds/variables.tf

41 lines
702 B
HCL

variable "db_instance_name" {
description = "RDS instance name"
type = string
}
variable "db_name" {
description = "Database name"
type = string
}
variable "db_username" {
description = "Database username"
type = string
}
variable "db_password" {
description = "Database password"
type = string
sensitive = true
}
variable "vpc_id" {
description = "VPC ID"
type = string
}
variable "vswitch_id" {
description = "VSwitch ID"
type = string
}
variable "security_group_id" {
description = "Security Group ID"
type = string
}
variable "db_instance_class" {
description = "RDS instance class"
type = string
}