variables.tf 369 B

123456789101112131415161718192021222324
  1. // ELASTICCACHE Instance Variables
  2. variable "stack_name" {
  3. }
  4. variable "engine_version" {
  5. default = "3.2.4"
  6. }
  7. variable "node_type" {
  8. default = "cache.t2.micro"
  9. }
  10. variable "maintenance_window" {
  11. # SUN 01:00AM-02:00AM ET
  12. default = "sun:05:00-sun:06:00"
  13. }
  14. variable "private_subnet_ids" {
  15. default = []
  16. }
  17. variable "security_group_ids" {
  18. default = []
  19. }