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