2021-02-15 06:10:00 +00:00
|
|
|
variable "region" {}
|
2021-03-16 18:45:47 +00:00
|
|
|
variable "project" {
|
|
|
|
default = "123"
|
|
|
|
}
|
|
|
|
variable "username" {
|
|
|
|
type = string
|
|
|
|
default = "123"
|
|
|
|
}
|
|
|
|
variable "password" {
|
|
|
|
type = string
|
|
|
|
default = "123"
|
|
|
|
}
|
2021-02-15 06:10:00 +00:00
|
|
|
variable "instance_type" {
|
|
|
|
default = "123"
|
|
|
|
}
|
2021-03-16 18:45:47 +00:00
|
|
|
variable "network_type" {
|
|
|
|
type = string
|
|
|
|
default = "any_subnet"
|
|
|
|
}
|
|
|
|
variable "network_name" {
|
|
|
|
type = string
|
|
|
|
default = ""
|
|
|
|
}
|
2021-02-15 06:10:00 +00:00
|
|
|
variable "public_ip" {
|
|
|
|
default = false
|
|
|
|
}
|
2021-03-16 18:45:47 +00:00
|
|
|
variable "floating_ip" {
|
|
|
|
default = false
|
|
|
|
}
|
2021-02-15 06:10:00 +00:00
|
|
|
variable "volume_size" {
|
|
|
|
default = "123"
|
|
|
|
}
|
|
|
|
variable "delete_on_termination" {
|
|
|
|
default = false
|
|
|
|
}
|
2021-03-16 18:45:47 +00:00
|
|
|
variable "volume_type" {
|
|
|
|
default = "standard"
|
|
|
|
}
|
2021-02-15 06:10:00 +00:00
|
|
|
variable "name" {}
|
|
|
|
variable "os" {}
|
|
|
|
variable "ssh_key_name" {}
|
|
|
|
variable "firewall" {}
|
|
|
|
variable "AWS_ACCESS_KEY" {
|
|
|
|
default = "123"
|
|
|
|
}
|
|
|
|
variable "AWS_SECRET_KEY" {
|
|
|
|
default = "123"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "size" {
|
|
|
|
default = "123"
|
|
|
|
}
|
|
|
|
variable "private_networking" {
|
|
|
|
default = false
|
|
|
|
}
|
|
|
|
variable "ssh_ids" {
|
|
|
|
default = ""
|
|
|
|
}
|
|
|
|
variable "backup" {
|
|
|
|
default = false
|
|
|
|
}
|
|
|
|
variable "privet_net" {
|
|
|
|
default = false
|
|
|
|
}
|
|
|
|
variable "monitoring" {
|
|
|
|
default = false
|
|
|
|
}
|
|
|
|
variable "token" {
|
|
|
|
default = "123"
|
|
|
|
}
|