variables.tf 516 B

12345678910111213141516
  1. variable "token" {
  2. description = "Yandex Cloud security OAuth token"
  3. default = "/Users/mirtov8/Documents/terraform-play/tf-dvwa/key.json" #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 = "" #put yours id of folder
  8. }
  9. variable "cloud_id" {
  10. description = "Yandex Cloud ID where resources will be created"
  11. default = "" #put yours id of cloud
  12. }