-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
107 lines (89 loc) · 3.44 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
variable "region" {
type = string
description = "The IBM Cloud region where the Cloudant instance will be provisioned."
default = "us-south"
}
variable "plan" {
type = string
description = "The plan for the Cloudant instance. Standard or lite."
default = "standard"
validation {
condition = contains(["standard", "lite"], var.plan)
error_message = "Supported plans: standard or lite. Cloudant instance on dedicated host supports standard plan only."
}
validation {
condition = var.plan != "standard" && var.environment_crn != null ? false : true
error_message = "Only standard plan is supported on a dedicated hardware instance"
}
}
variable "resource_group_id" {
description = "The Id of an existing IBM Cloud resource group where the instance will be grouped."
type = string
}
variable "instance_name" {
description = "The name of the Cloudant instance"
type = string
}
variable "allow_credentials" {
description = "Boolean value to allow authentication credentials. This will only be used if enable_cors is set to true."
type = bool
default = true
}
variable "origins" {
description = "An array of strings that contain allowed origin domains. This value is only used if enable_cors is set to true."
type = list(string)
default = []
}
variable "enable_cors" {
description = "Boolean value to enable cross-origin resource sharing (CORS)."
type = bool
default = false
}
variable "legacy_credentials" {
type = bool
description = "Use both legacy credentials, in addition to IAM credentials for authentication. If set to false, use use only IAM credentials."
default = false # uses only IAM credentials
}
variable "include_data_events" {
type = bool
description = "Include data event types in events sent to IBM Cloud Activity Tracker. If set to false, only management events will be sent to Activity Tracker."
default = false
}
variable "capacity" {
type = number
description = "Number of blocks of throughput units. See https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-ibm-cloud-public#provisioned-throughput-capacity. Capacity modification is not supported for lite plan."
default = 1
}
variable "access_tags" {
type = list(string)
description = "List of access tags to be associated with the Cloudant instance"
default = []
}
variable "tags" {
type = list(string)
description = "List of tags to be associated to cloudant instance"
default = []
}
variable "environment_crn" {
description = "Optional CRN of the IBM Cloudant Dedicated Hardware plan instance to provision a cloudant instance"
type = string
default = null
}
variable "service_endpoints" {
type = string
description = "Sets the endpoint of the instance, valid values are 'public', 'private', or 'public-and-private'"
default = "public-and-private"
validation {
condition = can(regex("public|public-and-private|private", var.service_endpoints))
error_message = "Valid values for service_endpoints are 'public', 'public-and-private', and 'private'"
}
}
variable "database_config" {
type = list(object({
db = string
partitioned = optional(bool)
shards = optional(number)
}))
description = "(Optional, List) The databases with their corresponding partitioning and shards to be created in the cloudant instance"
default = []
}