Skip to content

Commit 83ab67e

Browse files
Promote CustomErrorResponsePolicy from beta (#14270) (#1020)
[upstream:36ad8bca12040f761aabcb4746e77ddf8b9a5999] Signed-off-by: Modular Magician <[email protected]>
1 parent db7de6d commit 83ab67e

File tree

4 files changed

+182
-0
lines changed

4 files changed

+182
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# This file has some scaffolding to make sure that names are unique and that
2+
# a region and zone are selected when you try to create your Terraform resources.
3+
4+
locals {
5+
name_suffix = "${random_pet.suffix.id}"
6+
}
7+
8+
resource "random_pet" "suffix" {
9+
length = 2
10+
}
11+
12+
provider "google" {
13+
region = "us-central1"
14+
zone = "us-central1-c"
15+
}
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
resource "google_compute_url_map" "urlmap" {
2+
name = "urlmap-${local.name_suffix}"
3+
description = "a description"
4+
5+
default_service = google_compute_backend_service.example.id
6+
7+
default_custom_error_response_policy {
8+
error_response_rule {
9+
match_response_codes = ["5xx"] # Catch all 5xx responses
10+
path = "/internal_error.html" # Serve /internal_error.html from error service
11+
override_response_code = 502
12+
}
13+
error_service = google_compute_backend_bucket.error.id
14+
}
15+
16+
host_rule {
17+
hosts = ["mysite.com"]
18+
path_matcher = "mysite"
19+
}
20+
21+
path_matcher {
22+
name = "mysite"
23+
default_service = google_compute_backend_service.example.id
24+
25+
default_custom_error_response_policy {
26+
error_response_rule {
27+
match_response_codes = ["4xx", "5xx"] # Catch all 4xx and 5xx responses
28+
path = "/login_error.html" # Serve /login_error.html from the error service
29+
override_response_code = 404
30+
}
31+
error_response_rule {
32+
match_response_codes = ["503"] # Catch only 503 responses
33+
path = "/bad_gateway.html" # Serve /bad_gateway.html from the error service
34+
override_response_code = 502
35+
}
36+
error_service = google_compute_backend_bucket.error.id
37+
}
38+
39+
path_rule {
40+
paths = ["/private/*"]
41+
service = google_compute_backend_service.example.id
42+
43+
custom_error_response_policy {
44+
error_response_rule {
45+
match_response_codes = ["4xx"] # Catch all 4xx responses under /private/*
46+
path = "/login.html" # Serve /login.html from the error service
47+
override_response_code = 401
48+
}
49+
error_service = google_compute_backend_bucket.error.id
50+
}
51+
}
52+
}
53+
}
54+
55+
resource "google_compute_backend_service" "example" {
56+
name = "login-${local.name_suffix}"
57+
port_name = "http"
58+
protocol = "HTTP"
59+
timeout_sec = 10
60+
load_balancing_scheme = "EXTERNAL_MANAGED"
61+
62+
health_checks = [google_compute_http_health_check.default.id]
63+
}
64+
65+
resource "google_compute_http_health_check" "default" {
66+
name = "health-check-${local.name_suffix}"
67+
request_path = "/"
68+
check_interval_sec = 1
69+
timeout_sec = 1
70+
}
71+
72+
resource "google_compute_backend_bucket" "error" {
73+
name = "error-backend-bucket-${local.name_suffix}"
74+
bucket_name = google_storage_bucket.error.name
75+
enable_cdn = true
76+
}
77+
78+
resource "google_storage_bucket" "error" {
79+
name = "static-asset-bucket-${local.name_suffix}"
80+
location = "US"
81+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
===
2+
3+
These examples use real resources that will be billed to the
4+
Google Cloud Platform project you use - so make sure that you
5+
run "terraform destroy" before quitting!
6+
7+
===
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# Url Map Custom Error Response Policy - Terraform
2+
3+
## Setup
4+
5+
<walkthrough-author name="[email protected]" analyticsId="UA-125550242-1" tutorialName="url_map_custom_error_response_policy" repositoryUrl="https://github.com/terraform-google-modules/docs-examples"></walkthrough-author>
6+
7+
Welcome to Terraform in Google Cloud Shell! We need you to let us know what project you'd like to use with Terraform.
8+
9+
<walkthrough-project-billing-setup></walkthrough-project-billing-setup>
10+
11+
Terraform provisions real GCP resources, so anything you create in this session will be billed against this project.
12+
13+
## Terraforming!
14+
15+
Let's use {{project-id}} with Terraform! Click the Cloud Shell icon below to copy the command
16+
to your shell, and then run it from the shell by pressing Enter/Return. Terraform will pick up
17+
the project name from the environment variable.
18+
19+
```bash
20+
export GOOGLE_CLOUD_PROJECT={{project-id}}
21+
```
22+
23+
After that, let's get Terraform started. Run the following to pull in the providers.
24+
25+
```bash
26+
terraform init
27+
```
28+
29+
With the providers downloaded and a project set, you're ready to use Terraform. Go ahead!
30+
31+
```bash
32+
terraform apply
33+
```
34+
35+
Terraform will show you what it plans to do, and prompt you to accept. Type "yes" to accept the plan.
36+
37+
```bash
38+
yes
39+
```
40+
41+
42+
## Post-Apply
43+
44+
### Editing your config
45+
46+
Now you've provisioned your resources in GCP! If you run a "plan", you should see no changes needed.
47+
48+
```bash
49+
terraform plan
50+
```
51+
52+
So let's make a change! Try editing a number, or appending a value to the name in the editor. Then,
53+
run a 'plan' again.
54+
55+
```bash
56+
terraform plan
57+
```
58+
59+
Afterwards you can run an apply, which implicitly does a plan and shows you the intended changes
60+
at the 'yes' prompt.
61+
62+
```bash
63+
terraform apply
64+
```
65+
66+
```bash
67+
yes
68+
```
69+
70+
## Cleanup
71+
72+
Run the following to remove the resources Terraform provisioned:
73+
74+
```bash
75+
terraform destroy
76+
```
77+
```bash
78+
yes
79+
```

0 commit comments

Comments
 (0)