variables.tf 763 B

123456789101112131415161718192021222324252627282930
  1. variable "token" {
  2. description = "Yandex Cloud security OAuth token"
  3. default = "nope" #generate yours by this https://cloud.yandex.ru/docs/iam/concepts/authorization/oauth-token
  4. }
  5. variable "folder_id" {
  6. description = "Yandex Cloud Folder ID where resources will be created"
  7. default = "enter your folder id"
  8. }
  9. variable "cloud_id" {
  10. description = "Yandex Cloud ID where resources will be created"
  11. default = "there is cloud id"
  12. }
  13. variable "public_key_path" {
  14. description = "Path to ssh public key, which would be used to access workers"
  15. default = "~/.ssh/id_rsa.pub"
  16. }
  17. variable "remote_whitelist_ip" {
  18. type = list(string)
  19. default = ["1.1.1.1/32"]
  20. }
  21. variable "ipsec_password" {
  22. type = string
  23. default = "p@ssw0rd7788"
  24. }