From 1e41ad1ad30fa4321ef9016ddbba5e7c8b53a47c Mon Sep 17 00:00:00 2001 From: Roger Martinez <31829545+rogerthatdev@users.noreply.github.com> Date: Wed, 14 Dec 2022 15:59:20 -0800 Subject: [PATCH] chore: remove unused e2e test module block (#742) cleaning up some nails. This block will reappear in `environments/ops/main.tf` in a forthcoming PR. --- terraform/environments/staging/main.tf | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/terraform/environments/staging/main.tf b/terraform/environments/staging/main.tf index 11f83c781..52cc307e1 100644 --- a/terraform/environments/staging/main.tf +++ b/terraform/environments/staging/main.tf @@ -19,18 +19,3 @@ module "emblem_staging" { gcr_pubsub_format = true require_deploy_approval = false } - -// Set up Website E2E tests against a staging environment -module "emblem_staging_website_e2e_tests" { - source = "../../modules/website-e2e-test" - project_id = var.project_id - region = var.region - repo_owner = var.repo_owner - repo_name = var.repo_name - - // Temporary variables; used until Website - // E2E tests are integrated with setup.sh - // TODO: adjust these variables once integration is complete. - count = 0 - content_api_url = "" -}