Skip to content
This repository was archived by the owner on Mar 1, 2023. It is now read-only.

Commit 25dc296

Browse files
vvelikodnyVitaly Velikodny
andauthored
* update docs (#82)
Co-authored-by: Vitaly Velikodny <[email protected]>
1 parent eea43f0 commit 25dc296

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

docs/resources/gcore_cdn_rule.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ resource "gcore_cdn_rule" "cdn_example_com_rule_1" {
5555
jpg_quality = 55
5656
png_quality = 66
5757
}
58+
ignore_query_string {
59+
value = true
60+
}
5861
}
5962
}
6063
@@ -74,6 +77,11 @@ resource "gcore_cdn_rule" "cdn_example_com_rule_2" {
7477
enabled = false
7578
value = true
7679
}
80+
query_params_whitelist {
81+
value = [
82+
"abc",
83+
]
84+
}
7785
}
7886
}
7987

examples/resources/gcore_cdn_rule/resource.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ resource "gcore_cdn_rule" "cdn_example_com_rule_1" {
4040
jpg_quality = 55
4141
png_quality = 66
4242
}
43+
ignore_query_string {
44+
value = true
45+
}
4346
}
4447
}
4548

@@ -59,6 +62,11 @@ resource "gcore_cdn_rule" "cdn_example_com_rule_2" {
5962
enabled = false
6063
value = true
6164
}
65+
query_params_whitelist {
66+
value = [
67+
"abc",
68+
]
69+
}
6270
}
6371
}
6472

0 commit comments

Comments
 (0)