File tree Expand file tree Collapse file tree 5 files changed +4
-9
lines changed Expand file tree Collapse file tree 5 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 5
5
.PHONY : check
6
6
check :
7
7
@terraform validate
8
-
9
- .PHONY : yolo
10
- yolo :
11
- @echo " Wise, you are not..."
12
- @terraform apply -auto-approve
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ module "fastly_production" {
34
34
datadog_key = var.DATADOG_API_KEY
35
35
fastly_key = var.FASTLY_API_KEY
36
36
fastly_header_token = var.FASTLY_HEADER_TOKEN
37
- fastly_s3_logging = var.fastly_s3_logging
37
+ s3_logging_keys = var.fastly_s3_logging
38
38
}
39
39
```
40
40
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ resource "fastly_service_vcl" "python_org" {
45
45
ssl_check_cert = true
46
46
ssl_cert_hostname = " lb.psf.io"
47
47
ssl_sni_hostname = " lb.psf.io"
48
- ssl_ca_cert = file (" ${ path . module } /cdn/ certs/psf.io.pem" )
48
+ ssl_ca_cert = file (" ${ path . module } /certs/psf.io.pem" )
49
49
weight = 100
50
50
max_conn = 200
51
51
connect_timeout = 1000
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ module "fastly_production" {
16
16
module "fastly_staging" {
17
17
source = " ./cdn"
18
18
19
- name = " test.Python .org"
19
+ name = " test.python .org"
20
20
domain = " test.python.org"
21
21
extra_domains = []
22
22
# TODO: adjust to test-pythondotorg when done testing NGWAF
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ variable "DATADOG_API_KEY" {
14
14
sensitive = true
15
15
}
16
16
variable "fastly_s3_logging" {
17
- type = string
17
+ type = map ( string )
18
18
description = " S3 bucket keys for Fastly logging"
19
19
sensitive = true
20
20
}
You can’t perform that action at this time.
0 commit comments