File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ resource "fastly_service_vcl" "cdn" {
187
187
regex = null
188
188
request_condition = null
189
189
response_condition = null
190
- source = " \" bRMyYFEUAtTGmomMj7LKDRFdtGg4cLJXQGPjMYqRiLjLdtewyB \" "
190
+ source = var . FASTLY_HEADER_TOKEN
191
191
substitution = null
192
192
type = " request"
193
193
}
Original file line number Diff line number Diff line change @@ -2,4 +2,5 @@ AWS_ACCESS_KEY_ID = "NotARealKey"
2
2
AWS_SECRET_ACCESS_KEY = "NotARealKey"
3
3
4
4
NGWAF_TOKEN = "NotARealKey"
5
- FASTLY_API_KEY = "NotARealKey"
5
+ FASTLY_API_KEY = "NotARealKey"
6
+ FASTLY_HEADER_TOKEN = ""
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ variable "FASTLY_API_KEY" {
3
3
type = string
4
4
description = " API key for the Fastly VCL edge configuration."
5
5
}
6
+ variable "FASTLY_HEADER_TOKEN" {
7
+ description = " Fastly Token for authentication"
8
+ type = string
9
+ sensitive = true
10
+ }
6
11
7
12
# VCL Service variables
8
13
variable "USER_VCL_SERVICE_DOMAIN_NAME" {
You can’t perform that action at this time.
0 commit comments