Skip to content

Commit

Permalink
tidy things up
Browse files Browse the repository at this point in the history
  • Loading branch information
phbnf committed Jul 25, 2024
1 parent 463ba59 commit 11a3f9c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
8 changes: 2 additions & 6 deletions deployment/live/example-gcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,10 @@ the project:
gcloud auth application-default login
```

Then, specify your Google Cloud project ID:
Eventually, customize the GCP project ID (defaults to "trillian-tessera"), region
(defaults to "us-central1"), and bucket name prefix (defaults to "example-gcp"):
```bash
export GOOGLE_PROJECT={VALUE}
```

Eventually, customize the region (defaults to "us-central1"), and bucket name prefix
(defaults to "tessera-example"):
```bash
export GOOGLE_REGION={VALUE}
export TESSERA_BASE_NAME={VALUE}
```
Expand Down
2 changes: 1 addition & 1 deletion deployment/live/example-gcp/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
}

locals {
project_id = get_env("GOOGLE_PROJECT", "trillian-example")
project_id = get_env("GOOGLE_PROJECT", "trillian-tessera")
location = get_env("GOOGLE_REGION", "us-central1")
base_name = get_env("TESSERA_BASE_NAME", "example-gcp")
}
Expand Down
2 changes: 1 addition & 1 deletion deployment/modules/gcs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ resource "google_storage_bucket_iam_binding" "log_bucket_writer" {
resource "google_spanner_instance" "log_spanner" {
name = var.base_name
config = "regional-${var.location}"
display_name = "${var.base_name}"
display_name = "${var.base_name} Spanner Instance"
processing_units = 100
}

Expand Down

0 comments on commit 11a3f9c

Please sign in to comment.