dolphinscheduler-variables.tf 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing,
  12. # software distributed under the License is distributed on an
  13. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. # KIND, either express or implied. See the License for the
  15. # specific language governing permissions and limitations
  16. # under the License.
  17. variable "ds_version" {
  18. type = string
  19. description = "DolphinScheduler Version"
  20. default = "3.1.1"
  21. }
  22. variable "ds_ami_name" {
  23. type = string
  24. description = "Name of DolphinScheduler AMI"
  25. default = "dolphinscheduler-ami"
  26. }
  27. variable "ds_component_replicas" {
  28. type = map(number)
  29. description = "Replicas of the DolphinScheduler Components"
  30. default = {
  31. master = 1
  32. worker = 1
  33. alert = 1
  34. api = 1
  35. standalone_server = 0
  36. }
  37. }
  38. ## VM settings
  39. variable "vm_instance_type" {
  40. type = map(string)
  41. description = "EC2 instance type"
  42. default = {
  43. master = "t2.medium"
  44. worker = "t2.medium"
  45. alert = "t2.micro"
  46. api = "t2.small"
  47. standalone_server = "t2.small"
  48. }
  49. }
  50. variable "vm_associate_public_ip_address" {
  51. type = map(bool)
  52. description = "Associate a public IP address to the EC2 instance"
  53. default = {
  54. master = true
  55. worker = true
  56. alert = true
  57. api = true
  58. standalone_server = true
  59. }
  60. }
  61. variable "vm_root_volume_size" {
  62. type = map(number)
  63. description = "Root Volume size of the EC2 Instance"
  64. default = {
  65. master = 30
  66. worker = 30
  67. alert = 30
  68. api = 30
  69. standalone_server = 30
  70. }
  71. }
  72. variable "vm_data_volume_size" {
  73. type = map(number)
  74. description = "Data volume size of the EC2 Instance"
  75. default = {
  76. master = 10
  77. worker = 10
  78. alert = 10
  79. api = 10
  80. standalone_server = 10
  81. }
  82. }
  83. variable "vm_root_volume_type" {
  84. type = map(string)
  85. description = "Root volume type of the EC2 Instance"
  86. default = {
  87. master = "gp2"
  88. worker = "gp2"
  89. alert = "gp2"
  90. api = "gp2"
  91. standalone_server = "gp2"
  92. }
  93. }
  94. variable "vm_data_volume_type" {
  95. type = map(string)
  96. description = "Data volume type of the EC2 Instance"
  97. default = {
  98. master = "gp2"
  99. worker = "gp2"
  100. alert = "gp2"
  101. api = "gp2"
  102. standalone_server = "gp2"
  103. }
  104. }