-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
31 lines (25 loc) · 1.1 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
##############################################################################
# IBM Cloud Provider
##############################################################################
provider "ibm" {
ibmcloud_api_key = var.ibmcloud_api_key
region = var.region
ibmcloud_timeout = 60
}
##############################################################################
##############################################################################
# VPC Module
##############################################################################
module "ez_vpc" {
source = "./ez_vpc"
prefix = var.prefix
region = var.region
resource_group = var.resource_group
tags = var.tags
use_public_gateways = var.use_public_gateways
add_cluster_acl_rules = var.add_cluster_acl_rules
allow_inbound_traffic = var.allow_inbound_traffic
classic_access = var.classic_access
override_json = var.override ? file("${path.module}/override.json") : "{}"
}
##############################################################################