rds-main.tf 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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" "database_sg" {
  18. name = "dolphinscheduler-database"
  19. vpc_id = aws_vpc._.id
  20. description = "Allow all inbound for Postgres"
  21. ingress {
  22. from_port = 5432
  23. to_port = 5432
  24. protocol = "tcp"
  25. security_groups = [
  26. aws_security_group.master.id,
  27. aws_security_group.worker.id,
  28. aws_security_group.alert.id,
  29. aws_security_group.api.id,
  30. aws_security_group.standalone.id
  31. ]
  32. }
  33. }
  34. resource "aws_db_subnet_group" "database_subnet_group" {
  35. name = "dolphinscheduler-database_subnet_group"
  36. subnet_ids = [for subnet in aws_subnet.private : subnet.id]
  37. }
  38. resource "aws_db_instance" "database" {
  39. identifier = "dolphinscheduler"
  40. db_name = "dolphinscheduler"
  41. instance_class = var.db_instance_class
  42. allocated_storage = 5
  43. engine = "postgres"
  44. engine_version = "14.5"
  45. skip_final_snapshot = true
  46. db_subnet_group_name = aws_db_subnet_group.database_subnet_group.id
  47. publicly_accessible = true
  48. vpc_security_group_ids = [aws_security_group.database_sg.id]
  49. username = var.db_username
  50. password = var.db_password
  51. }