-
Notifications
You must be signed in to change notification settings - Fork 6
/
main.tf
29 lines (24 loc) · 907 Bytes
/
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
##############################################################################
# Create Cloud Internet Services (CIS) service
##############################################################################
resource "ibm_cis" "cis_instance" {
name = var.service_name
plan = var.plan
resource_group_id = var.resource_group_id
tags = var.tags
location = "global"
timeouts {
create = "15m"
update = "15m"
delete = "15m"
}
}
##############################################################################
# Add domain to CIS instance
##############################################################################
module "cis_domain" {
source = "./modules/domain"
domain_name = var.domain_name
cis_instance_id = ibm_cis.cis_instance.id
}
##############################################################################