docs(typo): fix cdn regions (#795)

This commit is contained in:
Mauritz Uphoff 2025-04-30 10:43:54 +02:00 committed by GitHub
parent 855d3040ef
commit 8341478828
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ resource "stackit_cdn_distribution" "example_distribution" {
type = "http" type = "http"
origin_url = "mybackend.onstackit.cloud" origin_url = "mybackend.onstackit.cloud"
} }
regions = ["EN", "US", "ASIA", "AF", "SA"] regions = ["EU", "US", "ASIA", "AF", "SA"]
} }
} }
``` ```

View file

@ -6,6 +6,6 @@ resource "stackit_cdn_distribution" "example_distribution" {
type = "http" type = "http"
origin_url = "mybackend.onstackit.cloud" origin_url = "mybackend.onstackit.cloud"
} }
regions = ["EN", "US", "ASIA", "AF", "SA"] regions = ["EU", "US", "ASIA", "AF", "SA"]
} }
} }