Skip to content
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

Example for handling SRV records #39

Open
ghost opened this issue Apr 4, 2022 · 1 comment
Open

Example for handling SRV records #39

ghost opened this issue Apr 4, 2022 · 1 comment
Labels
documentation Improvements or additions to documentation

Comments

@ghost
Copy link

ghost commented Apr 4, 2022

Hello,

I have already checked the documentation and I was wondering if someone already had sucess to create a SRV record and could share any example.

Further it would be great then if it would be added to the Examples block in the README.

@der-eismann
Copy link

SRV are actually pretty simple, example for teamspeak:

resource "hetznerdns_record" "srv" {
  zone_id = hetznerdns_zone.example.id
  name    = "_ts3._udp.ts"
  value   = "10 0 9987 ts.example.com."
  type    = "SRV"
  ttl     = 3600
}

@timohirt timohirt added the documentation Improvements or additions to documentation label Oct 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

2 participants