Skip to content

Commit 9d02c26

Browse files
committed
organize tesseract instances
1 parent 538637f commit 9d02c26

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

deployment/live/gcp/static-ct/logs/ci/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Overview
44

5-
This config uses the [gcp/conformance](/deployment/modules/gcp/conformance) module to
5+
This config uses the [gcp/conformance](/deployment/modules/gcp/tesseract/conformance) module to
66
define a CI environment to run the SCTFE on Cloud Run, backed by Trillian Tessera.
77

88
At a high level, this environment consists of:
@@ -15,7 +15,7 @@ At a high level, this environment consists of:
1515

1616
### Automatic Deployment
1717

18-
This GCP SCTFE conformance CI environment is designed to be deployed by the Cloud Build ([Terraform module](/deployment/modules/gcp/cloudbuild/), [Terragrunt configuration](/deployment/live/gcp/static-ct/cloudbuild/prod/)).
18+
This GCP SCTFE conformance CI environment is designed to be deployed by the Cloud Build ([Terraform module](/deployment/modules/gcp/cloudbuild/conformance/), [Terragrunt configuration](/deployment/live/gcp/static-ct/cloudbuild/prod/)).
1919

2020
### Manual Deployment
2121

deployment/live/gcp/static-ct/logs/ci/terragrunt.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
source = "${get_repo_root()}/deployment/modules/gcp//conformance"
2+
source = "${get_repo_root()}/deployment/modules/gcp//tesseract/conformance"
33
}
44

55
locals {

deployment/modules/gcp/conformance/main.tf renamed to deployment/modules/gcp/tesseract/conformance/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
}
44

55
module "storage" {
6-
source = "../storage"
6+
source = "../../storage"
77

88
project_id = var.project_id
99
base_name = var.base_name
@@ -12,13 +12,13 @@ module "storage" {
1212
}
1313

1414
module "secretmanager" {
15-
source = "../secretmanager"
15+
source = "../../secretmanager"
1616

1717
base_name = var.base_name
1818
}
1919

2020
module "cloudrun" {
21-
source = "../cloudrun"
21+
source = "../../cloudrun"
2222

2323
env = var.env
2424
project_id = var.project_id

deployment/modules/gcp/test/main.tf renamed to deployment/modules/gcp/tesseract/test/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
}
44

55
module "storage" {
6-
source = "../storage"
6+
source = "../../storage"
77

88
project_id = var.project_id
99
base_name = var.base_name
@@ -12,7 +12,7 @@ module "storage" {
1212
}
1313

1414
module "secretmanager" {
15-
source = "../secretmanager"
15+
source = "../../secretmanager"
1616

1717
base_name = var.base_name
1818
}

0 commit comments

Comments
 (0)