mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
41 lines
651 B
HCL
41 lines
651 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 "name" {
|
|
type = string
|
|
default = "gitpod-database"
|
|
}
|
|
|
|
variable "username" {
|
|
type = string
|
|
default = "gitpod"
|
|
}
|
|
|
|
variable "network" {
|
|
type = object({
|
|
id = string
|
|
name = string
|
|
})
|
|
}
|
|
|
|
variable "gitpod" {
|
|
type = object({
|
|
serviceaccount = string
|
|
namespace = string
|
|
})
|
|
default = {
|
|
serviceaccount = "gitpod-database"
|
|
namespace = "default"
|
|
}
|
|
}
|