From 2404952d8c0f2575c331605e29c469cc14a87271 Mon Sep 17 00:00:00 2001 From: Integralist Date: Fri, 15 Sep 2023 15:18:27 +0100 Subject: [PATCH] test(interface): add logging providers --- tests/interface/main.tf | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tests/interface/main.tf b/tests/interface/main.tf index b21c52499..aa8163d4a 100644 --- a/tests/interface/main.tf +++ b/tests/interface/main.tf @@ -109,4 +109,15 @@ resource "fastly_service_vcl" "interface-test-project" { timeout = 4000 window = 10 } + + logging_bigquery { + aaccount_name = "test_logging_bigquery_account_name" + dataset = "test_logging_bigquery_dataset" + email = "test_logging_bigquery@example.com" + name = "test_logging_bigquery" + project_id = "example-gcp-project" + secret_key = "" + table = "test_logging_bigquery_table" + ttemplate = "test_logging_bigquery_template" + } }