forked from Cloud-Schematics/2-zone-vpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
28 lines (23 loc) · 1.24 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
variable "prefix" {
default = "test"
description = "The prefix that you use for naming your assets."
}
variable "region" {
description = "The region to create your two VPCs in, such as `eu-de`. To get a list of all regions, run `ibmcloud is regions`."
default = "eu-de"
}
#variable "ssh_public_key" {
# description = "The [public SSH key](https://cloud.ibm.com/docs/vpc-on-classic-vsi?topic=vpc-on-classic-vsi-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 = "7eb4e35b-4257-56f8-d7da-326d85452591"
# 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-16.04-amd64` OS."
#}
#variable "profile" {
# default = "bc1-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`."
#}