-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
47 lines (32 loc) · 1.36 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
##############################################################################
# Provider
##############################################################################
provider ibm {
ibmcloud_api_key = var.ibmcloud_api_key
region = var.ibm_region
generation = var.generation
ibmcloud_timeout = 60
}
##############################################################################
##############################################################################
# Resource Group
##############################################################################
data ibm_resource_group group {
name = var.resource_group
}
##############################################################################
##############################################################################
# VPC Data
#############################################################################
data ibm_is_vpc vpc {
name = var.vpc_name
}
#############################################################################
##############################################################################
# Create Subnets
##############################################################################
data ibm_is_subnet subnet {
count = length(var.subnet_names)
identifier = local.subnet_ids[count.index]
}
##############################################################################