-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathvariables.tf
43 lines (35 loc) · 992 Bytes
/
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
variable "ibmcloud_api_key" {
description = "Your IBM Cloud IAM API key"
default = ""
}
variable "ibmcloud_timeout" {
description = "Timeout for API operations in seconds."
default = 900
}
variable "resource_group_name" {
description = "Your resource group name"
default = ""
}
variable "vpc_name" {
description = "Unique name to your VPC"
}
variable "basename" {
description = "Prefix used for all resource names"
}
variable "region" {
description = "The region in which you want to provision your VPC and its resources"
default = "us-south"
}
variable "ssh_keyname" {
description = "Name of the SSH key to use"
}
variable "certificate_crn" {
description = "certificate instance CRN if you wish SSL offloading or End-to-end encryption"
type = string
default = ""
}
variable "enable_end_to_end_encryption" {
description = "Set it to true if you wish to enable End-to-end encryption"
type = bool
default = false
}