zookeeper-main.tf 3.6 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. resource "aws_security_group" "zookeeper_sg" {
  18. count = var.zookeeper_connect_string != "" ? 0 : 1
  19. name = "zookeeper_sg"
  20. description = "Allow incoming connections"
  21. vpc_id = aws_vpc._.id
  22. ingress {
  23. from_port = 2181
  24. to_port = 2181
  25. protocol = "tcp"
  26. security_groups = [
  27. aws_security_group.master.id,
  28. aws_security_group.worker.id,
  29. aws_security_group.alert.id,
  30. aws_security_group.api.id,
  31. aws_security_group.standalone.id
  32. ]
  33. description = "Allow incoming HTTP connections"
  34. }
  35. ingress {
  36. from_port = 22
  37. to_port = 22
  38. protocol = "tcp"
  39. cidr_blocks = ["0.0.0.0/0"]
  40. description = "Allow incoming SSH connections (Linux)"
  41. }
  42. egress {
  43. from_port = 0
  44. to_port = 0
  45. protocol = "-1"
  46. cidr_blocks = ["0.0.0.0/0"]
  47. }
  48. tags = merge(var.tags, {
  49. "Name" = "${var.name_prefix}-zookeeper-sg-${count.index}"
  50. })
  51. }
  52. data "template_file" "zookeeper_user_data" {
  53. template = file("templates/zookeeper/cloud-init.yaml")
  54. vars = {
  55. "ssh_public_key" = aws_key_pair.key_pair.public_key
  56. }
  57. }
  58. resource "aws_instance" "zookeeper" {
  59. count = var.zookeeper_connect_string != "" ? 0 : 1
  60. ami = data.aws_ami.amazon-linux.id
  61. instance_type = var.vm_instance_type.standalone_server
  62. subnet_id = aws_subnet.public[0].id
  63. vpc_security_group_ids = [aws_security_group.zookeeper_sg[count.index].id]
  64. source_dest_check = false
  65. associate_public_ip_address = var.vm_associate_public_ip_address.standalone_server
  66. key_name = aws_key_pair.key_pair.key_name
  67. user_data = data.template_file.zookeeper_user_data.rendered
  68. root_block_device {
  69. volume_size = var.vm_root_volume_size.standalone_server
  70. volume_type = var.vm_root_volume_type.standalone_server
  71. delete_on_termination = true
  72. encrypted = true
  73. tags = merge(var.tags, {
  74. "Name" = "${var.name_prefix}-rbd-zookeeper-${count.index}"
  75. })
  76. }
  77. ebs_block_device {
  78. device_name = "/dev/xvda"
  79. volume_size = var.vm_data_volume_size.standalone_server
  80. volume_type = var.vm_data_volume_type.standalone_server
  81. encrypted = true
  82. delete_on_termination = true
  83. tags = merge(var.tags, {
  84. "Name" = "${var.name_prefix}-ebd-zookeeper-${count.index}"
  85. })
  86. }
  87. connection {
  88. type = "ssh"
  89. user = "ec2-user"
  90. private_key = tls_private_key.key_pair.private_key_pem
  91. host = self.public_ip
  92. timeout = "30s"
  93. }
  94. provisioner "remote-exec" {
  95. inline = [
  96. "cloud-init status --wait",
  97. "docker run -it --name zookeeper -d -p 2181:2181 zookeeper:3.5"
  98. ]
  99. }
  100. tags = merge(var.tags, {
  101. "Name" = "${var.name_prefix}-zookeeper-${count.index}"
  102. })
  103. }