-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.tf
63 lines (54 loc) · 2.11 KB
/
main.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
##############################################################################
# Standard Cloudant Instance
##############################################################################
resource "ibm_cloudant" "cloudant_instance" {
name = var.instance_name
location = var.region
plan = var.plan
legacy_credentials = var.legacy_credentials # switch authentication between IAM legacy credentials
include_data_events = var.include_data_events # Sends data event types to Activity Tracker with LogDNA
capacity = var.capacity
resource_group_id = var.resource_group_id
enable_cors = var.enable_cors
tags = var.tags
service_endpoints = var.service_endpoints
environment_crn = var.environment_crn
dynamic "cors_config" {
for_each = var.enable_cors ? [1] : []
content {
allow_credentials = var.allow_credentials
origins = var.origins
}
}
timeouts {
create = "120m" # Extending provisioning time to 120 minutes
}
lifecycle {
# Ignore changes to these as a change will destroy and recreate the instance
ignore_changes = [
legacy_credentials,
environment_crn,
resource_group_id,
location
]
}
}
##############################################################################
# Attach access tags
##############################################################################
resource "ibm_resource_tag" "access_tags" {
count = length(var.access_tags) == 0 ? 0 : 1
resource_id = ibm_cloudant.cloudant_instance.crn
tags = var.access_tags
tag_type = "access"
}
#############################################################################
# Create database in cloudant instance
##############################################################################
resource "ibm_cloudant_database" "cloudant_database" {
count = length(var.database_config)
db = var.database_config[count.index].db
partitioned = var.database_config[count.index].partitioned
shards = var.database_config[count.index].shards
instance_crn = ibm_cloudant.cloudant_instance.crn
}