31 lines
546 B
HCL
31 lines
546 B
HCL
variable "redis_instance_name" {
|
|
description = "Redis instance name"
|
|
type = string
|
|
}
|
|
|
|
variable "redis_password" {
|
|
description = "Redis 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 "redis_instance_class" {
|
|
description = "Redis instance class"
|
|
type = string
|
|
}
|