mirror of
https://github.com/google/nomulus
synced 2026-04-12 12:37:14 +00:00
16 lines
438 B
HCL
16 lines
438 B
HCL
terraform {
|
|
backend "gcs" {
|
|
# The name of the GCS bucket that stores the terraform.tfstate file.
|
|
bucket = "YOUR_GCS_BUCKET"
|
|
prefix = "terraform/state"
|
|
}
|
|
}
|
|
|
|
module "proxy" {
|
|
source = "../../modules"
|
|
proxy_project_name = "YOUR_PROXY_PROJECT"
|
|
gcr_project_name = "YOUR_GCR_PROJECT"
|
|
proxy_domain_name = "YOUR_PROXY_DOMAIN"
|
|
proxy_certificate_bucket = "YOUR_CERTIFICATE_BUCKET"
|
|
}
|