mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
34 lines
500 B
HCL
34 lines
500 B
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
|
|
}
|
|
|
|
variable "region" {
|
|
type = string
|
|
}
|
|
|
|
variable "zone_name" {
|
|
type = string
|
|
}
|
|
|
|
variable "name" {
|
|
type = string
|
|
}
|
|
|
|
variable "subdomain" {
|
|
type = string
|
|
default = "gitpod"
|
|
}
|
|
|
|
variable "gitpod" {
|
|
type = object({
|
|
namespace = string
|
|
})
|
|
default = {
|
|
namespace = "default"
|
|
}
|
|
} |