Terraform fastly service (#2527)

* define peps fastly frontend with terraform

* add myself as codeowner of terraform/fastly
This commit is contained in:
Ee Durbin 2022-04-15 04:10:11 -04:00 committed by GitHub
parent 5144e88dfb
commit e637415047
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 98 additions and 0 deletions

1
.github/CODEOWNERS vendored
View File

@ -9,6 +9,7 @@
.github/workflows/ @AA-Turner @CAM-Gerlach .github/workflows/ @AA-Turner @CAM-Gerlach
Makefile @AA-Turner Makefile @AA-Turner
requirements.txt @AA-Turner requirements.txt @AA-Turner
infra/ @ewdurbin
pep_sphinx_extensions/ @AA-Turner pep_sphinx_extensions/ @AA-Turner
AUTHOR_OVERRIDES.csv @AA-Turner AUTHOR_OVERRIDES.csv @AA-Turner

2
infra/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.terraform*
terraform.tfstate*

22
infra/config.tf Normal file
View File

@ -0,0 +1,22 @@
terraform {
required_providers {
fastly = {
source = "fastly/fastly"
version = "1.1.2"
}
}
required_version = ">= 1.1.8"
cloud {
organization = "psf"
workspaces {
name = "peps"
}
}
}
variable "fastly_token" {
type = string
sensitive = true
}
provider "fastly" {
api_key = var.fastly_token
}

73
infra/main.tf Normal file
View File

@ -0,0 +1,73 @@
resource "fastly_service_vcl" "peps" {
name = "peps.python.org"
activate = true
domain { name = "peps.python.org" }
backend {
name = "GitHub Pages"
address = "python.github.io"
port = 443
override_host = "peps.python.org"
use_ssl = true
ssl_check_cert = true
ssl_cert_hostname = "python.github.io"
ssl_sni_hostname = "python.github.io"
}
header {
name = "HSTS"
type = "response"
action = "set"
destination = "http.Strict-Transport-Security"
ignore_if_set = false
source = "\"max-age=300\""
}
request_setting {
name = "Force TLS"
force_ssl = true
}
snippet {
name = "serve-rss"
type = "recv"
content = <<-EOT
if (req.url == "/peps.rss/") {
set req.url = "/peps.rss";
}
EOT
}
snippet {
name = "redirect"
type = "error"
content = <<-EOT
if (obj.status == 618) {
set obj.status = 302;
set obj.http.Location = "https://" + req.http.host + req.http.Location;
return(deliver);
}
EOT
}
snippet {
name = "redirect-numbers"
type = "recv"
content = <<-EOT
if (req.url ~ "^/(\d|\d\d|\d\d\d|\d\d\d\d)/?$") {
set req.http.Location = "/pep-" + std.strpad(re.group.1, 4, "0") + "/";
error 618;
}
EOT
}
snippet {
name = "left-pad-pep-numbers"
type = "recv"
content = <<-EOT
if (req.url ~ "^/pep-(\d|\d\d|\d\d\d)/?$") {
set req.http.Location = "/pep-" + std.strpad(re.group.1, 4, "0") + "/";
error 618;
}
EOT
}
}