forked from GoogleCloudPlatform/professional-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
88 lines (75 loc) · 2.44 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/**
* Copyright 2023 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
variable "project_id" {
type = string
description = "Default GCP project where all of your resources will be created in"
}
variable "cluster_name" {
type = string
description = "The name of the cluster"
}
variable "cluster_location" {
type = string
description = "The location (zone or region) this cluster has been created in. One of location, region, zone, or a provider-level zone must be specified."
}
variable "gitlab_agent" {
type = string
description = "Name of gitlab KAS agent"
default = "gitlab-kas"
}
variable "gitlab_repo_name" {
type = string
description = "Name of repository in Gitlab"
}
variable "product_name" {
type = string
description = "Name of project/product by which to distinguish k8s resources"
}
variable "config_author_email" {
type = string
description = "Author email to use for commits in gitlab repo"
default = ""
}
variable "config_author_name" {
type = string
description = "Author name to use for commits in gitlab repo"
default = ""
}
variable "kas_address" {
type = string
description = "Address of Gitlab Agent server for KAS clients"
default = "wss://kas.gitlab.com"
}
variable "agentk_image_url" {
type = string
description = "Image URL of Gitlab agentk image hosted in a container registry"
default = "registry.gitlab.com/gitlab-org/cluster-integration/gitlab-agent/agentk"
}
variable "agentk_image_tag" {
type = string
description = "Tag of agentk image"
default = "v15.9.0-rc1"
}
variable "gitlab_agent_chart_repo" {
type = string
description = "Repository for gitlab Helm chart"
default = "https://charts.gitlab.io"
}
variable "gitlab_agent_chart_name" {
type = string
description = "Name of gitlab agent chat in repository"
default = "gitlab-agent"
}