-
-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
provide a hostTTL function #3
Comments
I think you can do either: {
subdomains.foo.A = [ (a "1.1.1.1" // { ttl = 50; }) ];
} or {
subdomains.foo.A = [ (ttl 60 (a "1.1.1.1")) ];
} I think it would also help if the Regarding creating simple subdomain hosts, I completely agree that it’s annoying, however I don’t know how to make it better in an unambiguous way. I was thinking about building yet another higher-level DSL on top of this one, that would be ambiguous but would allow for easier hosts definitions. |
Your ttl function would mean, I would have to specify A and AAAA records separately. My idea was to create a shorthand function for this. |
Is there anything that goes against specifying a default TTL, and then editing it on a case on case basis? EDIT: I stand corrected, there is a |
Currently its a little annoying to create a subdomain host with a specific TTL. I would suggest something like the following:
The text was updated successfully, but these errors were encountered: