-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanaged_transforms.tf
More file actions
43 lines (40 loc) · 995 Bytes
/
managed_transforms.tf
File metadata and controls
43 lines (40 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
resource "cloudflare_managed_transforms" "tarkov_dev" {
zone_id = var.CLOUDFLARE_ZONE_ID
# The v5 provider imports this resource with empty header sets even when the
# live configuration is readable. Keep the desired values here, but suppress
# the import-only churn so the repo can stay no-op without an apply.
lifecycle {
ignore_changes = [
managed_request_headers,
managed_response_headers,
]
}
managed_request_headers = [
{
enabled = false
id = "add_client_certificate_headers"
},
{
enabled = false
id = "add_visitor_location_headers"
},
{
enabled = false
id = "remove_visitor_ip_headers"
},
{
enabled = false
id = "add_waf_credential_check_status_header"
},
]
managed_response_headers = [
{
enabled = false
id = "add_security_headers"
},
{
enabled = false
id = "remove_x-powered-by_header"
},
]
}