generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
52 lines (44 loc) · 1.56 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
50
51
52
########################################################################################################################
# Input variables
########################################################################################################################
variable "ibmcloud_api_key" {
type = string
description = "The IBM Cloud API Key"
sensitive = true
}
variable "region" {
type = string
description = "Region to provision all resources created by this example"
default = "us-south"
}
variable "prefix" {
type = string
description = "Prefix to append to all resources created by this example"
default = "adv"
}
variable "resource_group" {
type = string
description = "The name of an existing resource group to provision resources in to. If not set a new resource group will be created using the prefix variable"
default = null
}
variable "resource_tags" {
type = list(string)
description = "Optional list of tags to be added to created resources"
default = []
}
variable "existing_mq_capacity_crn" {
type = string
description = "The CRN of an existing capacity service instance, if not specifed, a new capacity plan will be created"
}
variable "keystore_certificate" {
type = string
description = "Base64 encoded string containing keystore certificate"
default = null
sensitive = true
}
variable "truststore_certificate" {
type = string
description = "Base64 encoded string containing truststore certificate"
default = null
sensitive = true
}