forked from f5devcentral/ibmcloud_schematics_bigip_multinic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
24 lines (22 loc) · 845 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
##############################################################################
# This is default entrypoint.
# - Ensure user provided region is valid
# - Ensure user provided resource_group is valid
##############################################################################
variable "generation" {
default = 2
description = "The VPC Generation to target. Valid values are 2 or 1."
}
provider "ibm" {
/* Uncomment ibmcloud_api_key while testing from CLI */
// ibmcloud_api_key = var.api_key
generation = var.generation
region = var.region
ibmcloud_timeout = 300
}
##############################################################################
# Read/validate Region
##############################################################################
data "ibm_is_region" "region" {
name = "${var.region}"
}