Skip to content

Commit a816f79

Browse files
committed
Merge branch 'main' into standard_reports
2 parents 727c3c6 + ade5825 commit a816f79

File tree

4 files changed

+41
-40
lines changed

4 files changed

+41
-40
lines changed

infra/tf/.terraform.lock.hcl

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

infra/tf/data_exchange.tf

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ resource "google_bigquery_analytics_hub_listing" "crawl" {
2828
bigquery_dataset {
2929
dataset = "projects/${local.project_number}/datasets/crawl"
3030
}
31-
request_access = "https://har.fyi/guides/getting-started/#setting-up-bigquery-to-access-the-http-archive"
32-
description = "A comprehensive dataset tracking how the web is built. We regularly crawl top websites, capturing detailed resource metadata, web platform API usage, and execution traces. This dataset offers in-depth insights into web performance, trends, and technologies."
33-
documentation = file("attachments/documentation.md")
34-
icon = filebase64("attachments/icon.png")
31+
request_access = "https://har.fyi/guides/getting-started/#setting-up-bigquery-to-access-the-http-archive"
32+
description = "A comprehensive dataset tracking how the web is built. We regularly crawl top websites, capturing detailed resource metadata, web platform API usage, and execution traces. This dataset offers in-depth insights into web performance, trends, and technologies."
33+
documentation = file("attachments/documentation.md")
34+
icon = filebase64("attachments/icon.png")
35+
log_linked_dataset_query_user_email = true
3536
data_provider {
3637
name = "HTTP Archive"
3738
primary_contact = "https://httparchive.org/"

infra/tf/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ terraform {
33
required_providers {
44
google = {
55
source = "hashicorp/google"
6-
version = ">= 6.13.0"
6+
version = ">= 6.40.0"
77
}
88
google-beta = {
99
source = "hashicorp/google-beta"
10-
version = ">= 6.13.0"
10+
version = ">= 6.40.0"
1111
}
1212
}
1313

1414
backend "gcs" {
1515
bucket = "tfstate-httparchive"
16-
prefix = "prod"
16+
prefix = "dataform/prod"
1717
}
1818
}
1919

infra/tf/monitoring.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ EOF
3131

3232

3333
resource "google_monitoring_alert_policy" "dataform_export" {
34-
combiner = "OR"
35-
display_name = "Dataform Export Function Error"
36-
enabled = true
37-
//notification_channels = ["projects/${local.project}/notificationChannels/5647028675917298338"]
38-
project = local.project
39-
severity = "CRITICAL"
40-
user_labels = {}
34+
combiner = "OR"
35+
display_name = "Dataform Export Function Error"
36+
enabled = true
37+
notification_channels = ["projects/${local.project}/notificationChannels/5647028675917298338"]
38+
project = local.project
39+
severity = "CRITICAL"
40+
user_labels = {}
4141
alert_strategy {
4242
notification_prompts = ["OPENED"]
4343
notification_rate_limit {

0 commit comments

Comments
 (0)