123456789101112131415161718192021222324252627282930 |
- variable "token" {
- description = "Yandex Cloud security OAuth token"
- default = "nope" #generate yours by this https://cloud.yandex.ru/docs/iam/concepts/authorization/oauth-token
- }
- variable "folder_id" {
- description = "Yandex Cloud Folder ID where resources will be created"
- default = "enter your folder id"
- }
- variable "cloud_id" {
- description = "Yandex Cloud ID where resources will be created"
- default = "there is cloud id"
- }
- variable "public_key_path" {
- description = "Path to ssh public key, which would be used to access workers"
- default = "~/.ssh/id_rsa.pub"
- }
- variable "remote_whitelist_ip" {
- type = list(string)
- default = ["1.1.1.1/32"]
- }
- variable "ipsec_password" {
- type = string
- default = "p@ssw0rd7788"
- }
|