Skip to content

Commit

Permalink
docs: fix typo in hetznerdns_nameservers data source example (#159)
Browse files Browse the repository at this point in the history
* Update nameservers.md: Typo

* Revert "Update nameservers.md: Typo"

This reverts commit a717fca.

* docs: fix typo in hetznerdns_nameservers data source example

* docs: generate docs

---------

Co-authored-by: Kim Oliver Drechsel <kim@drechsel.xyz>
  • Loading branch information
ThomasLandauer and kimdre authored Dec 9, 2024
1 parent a36fa03 commit d3908c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/data-sources/nameservers.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ data "hetznerdns_nameservers" "primary" {}
resource "hetznerdns_record" "mydomain_de-NS" {
for_each = toset(data.hetznerdns_nameservers.primary.ns.*.name)
zone_id = hetznerdns_zone.de.id
zone_id = hetznerdns_zone.mydomain_de.id
name = "@"
type = "NS"
value = each.value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data "hetznerdns_nameservers" "primary" {}
resource "hetznerdns_record" "mydomain_de-NS" {
for_each = toset(data.hetznerdns_nameservers.primary.ns.*.name)

zone_id = hetznerdns_zone.de.id
zone_id = hetznerdns_zone.mydomain_de.id
name = "@"
type = "NS"
value = each.value
Expand Down

0 comments on commit d3908c4

Please sign in to comment.