generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tf
197 lines (178 loc) · 6.85 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
##############################################################################
# Resource group
##############################################################################
module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
version = "1.1.6"
# if an existing resource group is not set (null) create a new one using prefix
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
existing_resource_group_name = var.resource_group
}
##############################################################################
# Key Protect All Inclusive
##############################################################################
locals {
key_ring_name = "en-key-ring"
key_name = "${var.prefix}-en"
}
module "key_protect_all_inclusive" {
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
version = "4.19.1"
resource_group_id = module.resource_group.resource_group_id
region = var.region
key_protect_instance_name = "${var.prefix}-kp"
resource_tags = var.resource_tags
keys = [{
key_ring_name = "en-key-ring"
keys = [{
key_name = "${var.prefix}-en"
force_delete = true
}]
}]
}
##############################################################################
# Create Cloud Object Storage instance and a bucket
##############################################################################
locals {
bucket_name = "${var.prefix}-bucket"
}
module "cos" {
source = "terraform-ibm-modules/cos/ibm"
version = "8.15.15"
resource_group_id = module.resource_group.resource_group_id
region = var.region
cos_instance_name = "${var.prefix}-cos"
cos_tags = var.resource_tags
bucket_name = local.bucket_name
retention_enabled = false # disable retention for test environments - enable for stage/prod
kms_encryption_enabled = false
}
##############################################################################
# Get Cloud Account ID
##############################################################################
data "ibm_iam_account_settings" "iam_account_settings" {
}
##############################################################################
# VPC
##############################################################################
resource "ibm_is_vpc" "example_vpc" {
name = "${var.prefix}-vpc"
resource_group = module.resource_group.resource_group_id
tags = var.resource_tags
}
resource "ibm_is_subnet" "testacc_subnet" {
name = "${var.prefix}-subnet"
vpc = ibm_is_vpc.example_vpc.id
zone = "${var.region}-1"
total_ipv4_address_count = 256
resource_group = module.resource_group.resource_group_id
}
##############################################################################
# Create CBR Zone
##############################################################################
module "cbr_vpc_zone" {
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
version = "1.29.0"
name = "${var.prefix}-VPC-network-zone"
zone_description = "CBR Network zone representing VPC"
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
addresses = [{
type = "vpc",
value = ibm_is_vpc.example_vpc.crn
}]
}
module "cbr_zone_schematics" {
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
version = "1.29.0"
name = "${var.prefix}-schematics-zone"
zone_description = "CBR Network zone containing Schematics"
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
addresses = [{
type = "serviceRef",
ref = {
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
service_name = "schematics"
}
}]
}
#############################################################################
# Create EN instance, destination, topic and subscription
##############################################################################
module "event_notification" {
source = "../../"
resource_group_id = module.resource_group.resource_group_id
name = "${var.prefix}-en"
kms_encryption_enabled = true
existing_kms_instance_crn = module.key_protect_all_inclusive.key_protect_id
root_key_id = module.key_protect_all_inclusive.keys["${local.key_ring_name}.${local.key_name}"].key_id
kms_endpoint_url = module.key_protect_all_inclusive.kms_public_endpoint
tags = var.resource_tags
service_endpoints = "public"
service_credential_names = var.service_credential_names
region = var.region
# COS Related
cos_integration_enabled = true
cos_bucket_name = module.cos.bucket_name
cos_instance_id = module.cos.cos_instance_crn
cos_endpoint = "https://${module.cos.s3_endpoint_public}"
cbr_rules = [
{
description = "${var.prefix}-event notification access only from vpc"
enforcement_mode = "enabled"
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
rule_contexts = [{
attributes = [
{
"name" : "endpointType",
"value" : "public"
},
{
name = "networkZoneId"
value = module.cbr_vpc_zone.zone_id
}]
}, {
attributes = [
{
"name" : "endpointType",
"value" : "public"
},
{
name = "networkZoneId"
value = module.cbr_zone_schematics.zone_id
}]
}]
}
]
}
resource "ibm_en_destination_webhook" "webhook_destination" {
instance_guid = module.event_notification.guid
name = "${var.prefix}-webhook-destination"
type = "webhook"
collect_failed_events = false
description = "Destination webhook for event notification"
config {
params {
verb = "POST"
url = "https://testwebhook.com"
custom_headers = {
"authorization" = "authorization"
}
sensitive_headers = ["authorization"]
}
}
}
resource "ibm_en_topic" "webhook_topic" {
instance_guid = module.event_notification.guid
name = "${var.prefix}-e2e-topic"
description = "Topic for EN events routing"
}
resource "ibm_en_subscription_webhook" "webhook_subscription" {
instance_guid = module.event_notification.guid
name = "${var.prefix}-webhook-subscription"
description = "The webhook subscription"
destination_id = ibm_en_destination_webhook.webhook_destination.destination_id
topic_id = ibm_en_topic.webhook_topic.topic_id
attributes {
signing_enabled = true
}
}