-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
49 lines (40 loc) · 1.04 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
variable "image_url" {
default = "cos://us-geo/rackware-rmm-bucket/RackWareRMMBYOLv7.6.0.47.qcow2"
description = "URL for source VSI image used to spin up instance."
}
variable "TF_VERSION" {
default = "1.1"
description = "Terraform engine version to be used in schematics"
}
variable "ssh_key" {
description = "The IBM Cloud platform SSH keys."
type = string
}
variable "zone" {
description = "Availability zone of region."
type = string
}
variable "resource_group" {
description = "Resource group name."
}
variable "profile" {
default = "bx2-2x8"
description = "Profile for compute server."
}
variable "vpc_name" {
description = "The name of VPC."
type = string
}
variable "subnet_name" {
description = "The name of subnet."
type = string
}
variable "attach_floating_ip" {
description = "Do you want to create and attach floating IP address?"
type = bool
default = false
}
variable "host_name" {
description = "Unique host name for RMM server."
type = string
}