Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Terraform configs #22

Merged
merged 4 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions deployment/live/gcp/test/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# GCP SCTFE Configs

## Prerequisites
You'll need to have a VM running in the same GCP project that you can SSH to,
with Go installed.

## Overview

This config uses the [gcp/storage](/deployment/modules/gcp/conformance) module to
define a test environment to run the SCTFE, backed by Trillian Tessera.

At a high level, this environment consists of:
- One Spanner instance with two databases:
- one for Tessera
- one for deduplication
- A GCS Bucket

## Manual deployment

First authenticate via `gcloud` as a principle with sufficient ACLs for
the project:
```bash
gcloud auth application-default login
```

Set the required environment variables:
```bash
export GOOGLE_PROJECT={VALUE}
export GOOGLE_REGION={VALUE} # e.g: us-central1
export TESSERA_BASE_NAME={VALUE} # e.g: staticct
```

Terraforming the project can be done by:
1. `cd` to the relevant directory for the environment to deploy/change (e.g. `ci`)
2. Run `terragrunt apply`

## Run the SCTFE

On the VM, run the following command:
```bash
go run ./cmd/gcp/ --project_id=${GOOGLE_PROJECT} --bucket=${GOOGLE_PROJECT}-${TESSERA_BASE_NAME}-bucket --spanner_db_path=projects/${GOOGLE_PROJECT}/instances/${TESSERA_BASE_NAME}/databases/${TESSERA_BASE_NAME}-db --spanner_db_path=projects/${GOOGLE_PROJECT}/instances/${TESSERA_BASE_NAME}/databases/${TESSERA_BASE_NAME}-dedup-db --private_key=./testdata/ct-http-server.privkey.pem --password=dirk --roots_pem_file=./testdata/fake-ca.cert --origin=${TESSERA_BASE_NAME}
```
26 changes: 26 additions & 0 deletions deployment/live/gcp/test/terragrunt.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
terraform {
source = "${get_repo_root()}/deployment/modules/gcp//storage"
}

locals {
project_id = get_env("GOOGLE_PROJECT", "phboneff-dev")
location = get_env("GOOGLE_REGION", "us-central1")
base_name = get_env("TESSERA_BASE_NAME", "tessera-staticct")
}

inputs = local

remote_state {
backend = "gcs"

config = {
project = local.project_id
location = local.location
bucket = "${local.project_id}-${local.base_name}-terraform-state"
prefix = "terraform.tfstate"

gcs_bucket_labels = {
name = "terraform_state_storage"
}
}
}
67 changes: 67 additions & 0 deletions deployment/modules/gcp/storage/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
terraform {
backend "gcs" {}

required_providers {
google = {
source = "registry.terraform.io/hashicorp/google"
version = "6.1.0"
}
}
}

phbnf marked this conversation as resolved.
Show resolved Hide resolved
# TODO(phboneff): import tessera terraform directly
# Services
resource "google_project_service" "serviceusage_googleapis_com" {
service = "serviceusage.googleapis.com"
disable_on_destroy = false
}
resource "google_project_service" "storage_api_googleapis_com" {
service = "storage-api.googleapis.com"
disable_on_destroy = false
}
resource "google_project_service" "storage_component_googleapis_com" {
service = "storage-component.googleapis.com"
disable_on_destroy = false
}
resource "google_project_service" "storage_googleapis_com" {
service = "storage.googleapis.com"
disable_on_destroy = false
}

## Resources

# Buckets

resource "google_storage_bucket" "log_bucket" {
name = "${var.project_id}-${var.base_name}-bucket"
location = var.location
storage_class = "STANDARD"
uniform_bucket_level_access = true
}

# Spanner

resource "google_spanner_instance" "log_spanner" {
name = var.base_name
config = "regional-${var.location}"
display_name = var.base_name
processing_units = 100
}

resource "google_spanner_database" "log_db" {
instance = google_spanner_instance.log_spanner.name
name = "${var.base_name}-db"
ddl = [
"CREATE TABLE SeqCoord (id INT64 NOT NULL, next INT64 NOT NULL,) PRIMARY KEY (id)",
"CREATE TABLE Seq (id INT64 NOT NULL, seq INT64 NOT NULL, v BYTES(MAX),) PRIMARY KEY (id, seq)",
"CREATE TABLE IntCoord (id INT64 NOT NULL, seq INT64 NOT NULL,) PRIMARY KEY (id)",
]
}

resource "google_spanner_database" "dedup_db" {
instance = google_spanner_instance.log_spanner.name
name = "${var.base_name}-dedup-db"
ddl = [
"CREATE TABLE IDSeq (id INT64 NOT NULL, h BYTES(MAX) NOT NULL, idx INT64 NOT NULL,) PRIMARY KEY (id, h)",
]
}
19 changes: 19 additions & 0 deletions deployment/modules/gcp/storage/outputs.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
output "log_bucket" {
description = "Log GCS bucket"
value = google_storage_bucket.log_bucket
}

output "log_spanner_db" {
description = "Log Spanner database"
value = google_spanner_database.log_db
}

output "log_spanner_instance" {
description = "Log Spanner instance"
value = google_spanner_instance.log_spanner
}

output "dedup_spanner_db" {
description = "Dedup Spanner database"
value = google_spanner_database.dedup_db
}
14 changes: 14 additions & 0 deletions deployment/modules/gcp/storage/variables.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
variable "project_id" {
description = "GCP project ID where the log is hosted"
type = string
}

variable "base_name" {
description = "Base name to use when naming resources"
type = string
}

variable "location" {
description = "Location in which to create resources"
type = string
}
Loading