daml/infra/modules/gcp_cdn_bucket/variables.tf
Gary Verhaegen cfae2d88f5
update Terraform files to match reality (#8780)
* fixup terraform config

Two changes have happened recently that have invalidated the current
Terraform files:

1. The Terraform version has gone through a major, incompatible upgrade
   (#8190); the required updates for this are reflected in the first
   commit of this PR.
2. The certificate used to serve [Hoogle](https://hoogle.daml.com) was
   about to expire, so Edward created a new one and updated the config
   directly. The second commit in this PR updates the Terraform config
   to match that new, already-in-prod setting.

Note: This PR applies cleanly, as there are no resulting changes in
Terraform's perception of the target state from 1, and the change from 2
has already been applied through other channels.

CHANGELOG_BEGIN
CHANGELOG_END

* update hoogle cert
2021-02-08 17:25:04 +00:00

29 lines
679 B
HCL

# Copyright (c) 2021 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
variable "name" {
description = "Name prefix for all the resources"
}
variable "labels" {
description = "Labels to apply on all the resources"
type = map
default = {}
}
variable "project" {
description = "GCP project name"
}
variable "region" {
description = "GCP region in which to create the resources"
}
variable "ssl_certificate" {
description = "A reference to the SSL certificate, google managed or not"
}
variable "cache_retention_days" {
description = "The number of days to keep the objects around"
}