11 lines
304 B
HCL
11 lines
304 B
HCL
# Create a CDN distribution
|
|
resource "stackit_cdn_distribution" "example_distribution" {
|
|
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
config = {
|
|
backend = {
|
|
type = "http"
|
|
origin_url = "mybackend.onstackit.cloud"
|
|
}
|
|
regions = ["EU", "US", "ASIA", "AF", "SA"]
|
|
}
|
|
}
|