-
Notifications
You must be signed in to change notification settings - Fork 11
/
variables.tf
49 lines (40 loc) · 1.05 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 resource_group {
description = "Name of resource group to provision resources"
default = "default"
}
variable "ibmcloud_region" {
description = "Preferred IBM Cloud region to use for your infrastructure"
default = "us-south"
}
variable "vpc_name" {
default = ""
description = "Name of your VPC"
}
variable "zone1" {
default = "us-south-1"
description = "Define the 1st zone of the region"
}
variable "zone2" {
default = "us-south-2"
description = "Define the 2nd zone of the region"
}
variable "zone1_cidr" {
default = "172.16.1.0/24"
description = "CIDR block to be used for zone 1"
}
variable "zone2_cidr" {
default = "172.16.2.0/24"
description = "CIDR block to be used for zone 2"
}
variable "ssh_key_name" {
default = ""
description = "Name of existing VPC SSH Key"
}
variable "image" {
default = "r006-14140f94-fcc4-11e9-96e7-a72723715315"
description = "OS Image ID to be used for virtual instances"
}
variable "profile" {
default = "cx2-2x4"
description = "Instance profile to be used for virtual instances"
}