Skip to content

Instantly share code, notes, and snippets.

@Dartblack4
Created March 12, 2019 10:43
Show Gist options
  • Save Dartblack4/97588beacbcc423143e10eeb93dbb05b to your computer and use it in GitHub Desktop.
Save Dartblack4/97588beacbcc423143e10eeb93dbb05b to your computer and use it in GitHub Desktop.
# Определение переменной токена
variable "hcloud_token" {}
# Определение переменной имени
variable "name" {
default = "foo"
}
# Определение переменной исходного образа ОС для инстанса
variable "image" {
default = "debian-9"
}
# Определение переменной типа инстанса в зависимости от выбора тарифа
variable "server_type" {
default = "cx11"
}
# Определение региона в каком будет создаваться инстанс
variable "location" {
default = "nbg1"
}
# Определение ssh ключа который будет добавлен на инстанс при создании
variable "public_key" {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment