28 lines
416 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 "location" {
type = string
default = "EU"
}
variable "name" {
type = string
}
variable "gitpod" {
type = object({
namespace = string
})
default = {
namespace = "default"
}
}