-
Notifications
You must be signed in to change notification settings - Fork 10
/
main.tf
31 lines (25 loc) · 923 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
30
##############################################################################
# This is default entrypoint.
# - Ensure user provided region is valid
# - Ensure user provided resource_group is valid
##############################################################################
variable "TF_VERSION" {
default = "0.13"
description = "terraform engine version to be used in schematics"
}
#variable "generation" {
# default = 2
# description = "The VPC Generation to target. Valid values are 2 or 1."
#}
#provider "ibm" {
#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
}