-
Notifications
You must be signed in to change notification settings - Fork 14
/
variables.tf
23 lines (19 loc) · 1.1 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
variable "ssh_public_key" {
description = "The [public SSH key](https://cloud.ibm.com/docs/vpc?topic=vpc-ssh-keys#locating-ssh-keys) that you use to access your VPC virtual servers. Use the public key from the `~/.ssh/id_rsa.pub` file generated by the latest version of ssh-keygen tool, with the recommended key-size 2048."
}
variable "ssh_key_name" {
default = "vpc-ssh-key"
description = "The name of the public SSH key."
}
variable "image" {
default = "r006-396ef8b6-91a3-48ce-a83b-0c6f67105cad"
description = "The ID of the image that represents the operating system that you want to install on your VPC virtual server. To list available images, run `ibmcloud is images`. The default image is for an `ubuntu-20-04-amd64` OS."
}
variable "profile" {
default = "bx2-2x8"
description = "The profile of compute CPU and memory resources that you want your VPC virtual servers to have. To list available profiles, run `ibmcloud is instance-profiles`."
}
variable "TF_VERSION" {
default = "1.0"
description = "The version of the Terraform engine that's used in the Schematics workspace."
}