15 lines
375 B
HCL
15 lines
375 B
HCL
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"]
|
|
blocked_countries = ["DE", "AT", "CH"]
|
|
|
|
optimizer = {
|
|
enabled = true
|
|
}
|
|
}
|
|
}
|