mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
feb53f96c1
This tightens our TLS configuration a bit, mostly by dropping support for SSL3, TLS1.0 and TLS1.1 on https://hoogle.daml.com, https://bazel-cache.da-ext.net, https://nix-cache.da-ext.net and the daml-binaries front (which I don't think we still use). CHANGELOG_BEGIN CHANGELOG_END
33 lines
762 B
HCL
33 lines
762 B
HCL
# Copyright (c) 2022 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(any)
|
|
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 "ssl_policy" {
|
|
description = "The url of an SSL policy to use."
|
|
}
|
|
|
|
variable "cache_retention_days" {
|
|
description = "The number of days to keep the objects around"
|
|
}
|