-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
42 lines (34 loc) · 1.08 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
###cloud vars
variable "token" {
type = string
description = "OAuth-token; https://cloud.yandex.ru/docs/iam/concepts/authorization/oauth-token"
}
variable "cloud_id" {
type = string
description = "https://cloud.yandex.ru/docs/resource-manager/operations/cloud/get-id"
}
variable "folder_id" {
type = string
description = "https://cloud.yandex.ru/docs/resource-manager/operations/folder/get-id"
}
variable "default_zone" {
type = string
default = "ru-central1-a"
description = "https://cloud.yandex.ru/docs/overview/concepts/geo-scope"
}
variable "default_cidr" {
type = list(string)
default = ["10.0.1.0/24"]
description = "https://cloud.yandex.ru/docs/vpc/operations/subnet-create"
}
variable "vpc_name" {
type = string
default = "develop"
description = "VPC network & subnet name"
}
###ssh vars
#variable "vms_ssh_root_key" {
# type = string
# default = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKWdwZ3ITR9ceNI5R/BcOHUf9H3G/i/u2MkOGk945cUI nedorezov@GARRO"
# description = "ssh-keygen -t ed25519"
#}