We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cafad57 commit f2bcc1bCopy full SHA for f2bcc1b
examples/resources/stackit_cdn_distribution/resource.tf
@@ -38,6 +38,24 @@ resource "stackit_cdn_distribution" "example_bucket_distribution" {
38
optimizer = {
39
enabled = false
40
}
41
+
42
+ redirects = {
43
+ rules = [
44
+ {
45
+ description = "test redirect"
46
+ enabled = true
47
+ rule_match_condition = "ANY"
48
+ status_code = 302
49
+ target_url = "https://stackit.de/"
50
+ matchers = [
51
52
+ values = ["*/otherPath/"]
53
+ value_match_condition = "ANY"
54
+ }
55
+ ]
56
57
58
59
60
61
0 commit comments