fix(guide): typo in cdn guide (#804)

This commit is contained in:
Mauritz Uphoff 2025-05-07 09:40:19 +02:00 committed by GitHub
parent 2d757a93fd
commit ab99821c30
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -53,7 +53,7 @@ This guide outlines the process of creating a STACKIT CDN distribution and confi
resource "stackit_cdn_custom_domain" "example" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
distribution_id = stackit_cdn_distribution.example_distribution.distribution_id
name = "${stackit_dns_record_set.example.name}.${stackit_dns_zone.dns_name}"
name = "${stackit_dns_record_set.example.name}.${stackit_dns_zone.example_zone.dns_name}"
}
```