I have a domain, say, example.com
hosted in GoDaddy. I want to create all DNS records starting with dev
for this domain in route53 of our Dev AWS account (e.g. dev-abc.example.com
, dev-xyz.example.com
).
I was able to make them working the following ways:
On my AWS account:
- I created a hosted zone of the same
example.com
domain in route53. - Zone
example.com
in route53 now got NS recordsns-111.awsdns-11.net.
andns-111.awsdns-11.com.
.
On GoDaddy:
Under example.com
zone, I created the following NS records to point dev-abc.example.com
and dev-xyz.example.com
to route53 of my AWS account:
ns dev-abc ns-111.awsdns-11.net 600 seconds
ns dev-abc ns-111.awsdns-11.com 600 seconds
ns dev-xyz ns-111.awsdns-11.net 600 seconds
ns dev-xyz ns-111.awsdns-11.com 600 seconds
Now, in route53 of my AWS account, I can create these two records (dev-abc.example.com
and dev-xyz.example.com
) of any valid type, and they work.
What I wanted to do is to create dev
prefixed wildcard NS records under example.com
zone in GoDaddy like below to point any records starts with dev
to route53 of my AWS account.
ns dev* ns-111.awsdns-11.net 600 seconds
ns dev* ns-111.awsdns-11.com 600 seconds
This way I won't have to create NS records in GoDaddy for each dev
prefixed record I want to create in route53 of my AWS account.
Is there a way to do this so I do not have to create the NS records in GoDaddy for each of the records I want to create under example.com
zone in route53 of my AWS account?
Please note that, I understand that I can create a sub-domain dev.example.com
zone in route53 of my AWS account, and then I can create records like app1.dev.example.com
, app2.dev.example.com
and so on there, but I do not want to do that.