dolphinscheduler-worker.tf 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. resource "aws_security_group" "worker" {
  18. name = "worker_server_sg"
  19. description = "Allow incoming connections"
  20. vpc_id = aws_vpc._.id
  21. ingress {
  22. from_port = 1234
  23. to_port = 1234
  24. protocol = "tcp"
  25. security_groups = [aws_security_group.master.id, aws_security_group.api.id]
  26. description = "Allow incoming HTTP connections"
  27. }
  28. ingress {
  29. from_port = 22
  30. to_port = 22
  31. protocol = "tcp"
  32. cidr_blocks = ["0.0.0.0/0"]
  33. description = "Allow incoming SSH connections (Linux)"
  34. }
  35. egress {
  36. from_port = 0
  37. to_port = 0
  38. protocol = "-1"
  39. cidr_blocks = ["0.0.0.0/0"]
  40. }
  41. tags = merge(var.tags, {
  42. "Name" = "${var.name_prefix}-worker-sg"
  43. })
  44. }
  45. data "template_file" "worker_user_data" {
  46. template = file("templates/cloud-init.yaml")
  47. vars = {
  48. "ssh_public_key" = aws_key_pair.key_pair.public_key
  49. "dolphinscheduler_version" = var.ds_version
  50. "dolphinscheduler_component" = "worker-server"
  51. "database_address" = aws_db_instance.database.address
  52. "database_port" = aws_db_instance.database.port
  53. "database_name" = aws_db_instance.database.db_name
  54. "database_username" = aws_db_instance.database.username
  55. "database_password" = aws_db_instance.database.password
  56. "zookeeper_connect_string" = var.zookeeper_connect_string != "" ? var.zookeeper_connect_string : aws_instance.zookeeper[0].private_ip
  57. "alert_server_host" = ""
  58. "s3_access_key_id" = aws_iam_access_key.s3.id
  59. "s3_secret_access_key" = aws_iam_access_key.s3.secret
  60. "s3_region" = var.aws_region
  61. "s3_bucket_name" = module.s3_bucket.s3_bucket_id
  62. "s3_endpoint" = ""
  63. }
  64. }
  65. resource "aws_instance" "worker" {
  66. count = var.ds_component_replicas.worker
  67. ami = data.aws_ami.dolphinscheduler.id
  68. instance_type = var.vm_instance_type.worker
  69. subnet_id = aws_subnet.public[0].id
  70. vpc_security_group_ids = [aws_security_group.worker.id]
  71. source_dest_check = false
  72. associate_public_ip_address = var.vm_associate_public_ip_address.worker
  73. user_data = data.template_file.worker_user_data.rendered
  74. root_block_device {
  75. volume_size = var.vm_root_volume_size.worker
  76. volume_type = var.vm_root_volume_type.worker
  77. delete_on_termination = true
  78. encrypted = true
  79. tags = merge(var.tags, {
  80. "Name" = "${var.name_prefix}-rbd"
  81. })
  82. }
  83. ebs_block_device {
  84. device_name = "/dev/xvda"
  85. volume_size = var.vm_data_volume_size.worker
  86. volume_type = var.vm_data_volume_type.worker
  87. encrypted = true
  88. delete_on_termination = true
  89. tags = merge(var.tags, {
  90. "Name" = "${var.name_prefix}-ebd"
  91. })
  92. }
  93. tags = merge(var.tags, {
  94. "Name" = "${var.name_prefix}-worker-${count.index}"
  95. })
  96. }