[add-providers-terraform-rds]
match='''
module ":[module_name]" {
  source = "git@github.com:theorchard/terraform-rds.git//?ref=:[module_version]"
  :[body]
}
'''

rewrite='''
module ":[module_name]" {
  source = "git@github.com:theorchard/terraform-rds.git//?ref=:[module_version]"

  providers = {
    aws.dns = aws
  }

  :[body]
}
'''