-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariable.tf
46 lines (37 loc) · 832 Bytes
/
variable.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
// Google cloud vars
variable "gcp_region" {
description = "Google cloud provider region"
type = string
sensitive = true
}
variable "gcp_project_name" {
description = "Google cloud project name"
type = string
sensitive = true
}
variable "gcp_zone" {
description = "Google cloud provider zone name"
type = string
sensitive = true
}
// Yandex cloud vars
variable "yc_token" {
description = "Yandex cloud token"
type = string
sensitive = true
}
variable "yc_cloud_id" {
description = "Yandex cloud id"
type = string
sensitive = true
}
variable "yc_folder_id" {
description = "Yandex cloud folder id"
type = string
sensitive = true
}
variable "yc_zone" {
description = "Yandex cloud zone"
type = string
sensitive = true
}