-
Notifications
You must be signed in to change notification settings - Fork 5
/
provider.tf
23 lines (20 loc) · 945 Bytes
/
provider.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
##############################################################################
# Variable block - See each variable description
##############################################################################
variable "region" {
default=""
description = "The Region where F5 virtual server to be provisioned in. To list available regions, run `ibmcloud is regions`. Supported regions are eu-de, eu-gb, us-south, us-east "
}
variable "generation" {
default = 2
description = "The VPC Generation to target. Valid values are 2 or 1."
}
##############################################################################
# Provider block - Default using logged user creds
##############################################################################
provider "ibm" {
# ibmcloud_api_key = "${var.ibmcloud_api_key}"
generation = "${var.generation}"
region = "${var.region}"
ibmcloud_timeout = 300
}