mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
1cd5bb2492
* infra: gcp_cdn_bucket: update comment The cache retention can be configured, while the comment suggests its hardcoded. * infra: don't create index.html inside gcp_cdn_bucket module We might want to add a different index.html per bucket, so move that code outside the module and into the bucket-specific terraform files. Also add bucket-specific index.html files. |
||
---|---|---|
.. | ||
google_compute.tf | ||
google_storage.tf | ||
outputs.tf | ||
README.md | ||
variables.tf |
A Google Storage Bucket + CDN configuration
This modules contains essentially two things:
- A GCS bucket to store objects into
- A load-balancer connected to it
It also makes a few assumptions:
- A service account will be created to write into the bucket
- All objects are meant to be publicly-readable
Module config
> terraform-docs md .
Inputs
Name | Description | Type | Default | Required |
---|---|---|---|---|
cache_retention_days | The number of days to keep the objects around | string | n/a | yes |
labels | Labels to apply on all the resources | map | <map> |
no |
name | Name prefix for all the resources | string | n/a | yes |
project | GCP project name | string | n/a | yes |
region | GCP region in which to create the resources | string | n/a | yes |
ssl_certificate | A reference to the SSL certificate, google managed or not | string | n/a | yes |
Outputs
Name | Description |
---|---|
bucket_name | Name of the GCS bucket that will receive the objects. |
external_ip | The external IP assigned to the global fowarding rule. |