Manuel Alejandro de Brito Fontes 91cc867ed4 Cleanup terraform
2021-05-19 19:46:57 -04:00

49 lines
1.2 KiB
HCL

/**
* Copyright (c) 2020 Gitpod GmbH. All rights reserved.
* Licensed under the MIT License. See License-MIT.txt in the project root for license information.
*/
variable "project" {
type = string
default = "self-hosted"
description = "This is used in the naming of some resources"
}
variable "region" {
type = string
description = "The AWS region that resources should be created in"
}
variable "domain" {
type = string
description = "The domain that Gitpod should be installed on"
}
variable "chart_location" {
type = string
default = "../../chart"
}
variable "image_version" {
type = string
description = "The version of which to install Gitpod i.e. v0.4.0"
}
variable "image_prefix" {
type = string
default = "eu.gcr.io/gitpod-core-dev/build/"
description = "Image prefix for the registry in which the images for the components are hosted"
}
variable "certbot_enabled" {
type = bool
default = false
description = "Have Certbot issue certificates"
}
variable "certificate_email" {
type = string
default = "someone@somewhere.com"
description = "Email to associate A Letsencrypt on (Set this if you set certbot_enabled to true)"
}