variables.tf 804 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. variable asg_number {
  2. type = number
  3. }
  4. variable idx_instance_type {
  5. type = string
  6. }
  7. variable user_data {
  8. default = ""
  9. type = string
  10. }
  11. variable launch_conf_name {
  12. type = string
  13. }
  14. variable asg_name {
  15. type = string
  16. }
  17. variable "volume_sizes" {
  18. description = "Map of volume sizes"
  19. type = map(number)
  20. }
  21. variable indexer_security_group_ids {
  22. type = list
  23. #default = [ ]
  24. }
  25. variable vpc_zone_identifier {
  26. type = list
  27. #default = [ ]
  28. }
  29. variable "key_name" {
  30. description = "The key name to use for the instance"
  31. default = ""
  32. }
  33. variable "name" {
  34. default = ""
  35. }
  36. variable "min_size" {
  37. default = 1
  38. }
  39. variable "max_size" {
  40. default = 1
  41. }
  42. variable tags {
  43. default = {}
  44. }
  45. variable iam_instance_profile {
  46. default = ""
  47. }
  48. variable common_services_account {
  49. type = string
  50. }