resource "aws_db_subnet_group" "DX3-D1-XRDS-GROUP" {
  name        = "dx3-d1-xrds-group"
  description = "RDS subnet group for DX3-D1 VPC"
  subnet_ids  = [aws_subnet.DX3-D1-XRDS-1A.id, aws_subnet.DX3-D1-XRDS-1B.id]
  tags = {
    Business-Unit = "Digital-Exchange"
    Environment   = "Dev"
    Name          = "DX3-D1-XRDS-SNG"
    Owner         = "Christian seitz"
    Project-Code  = "2000306K"
    Project-Name  = "SME-DX3-Dev"
  }
}