forked from Cloud-Schematics/hpc-fss-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
provider.tf
26 lines (25 loc) · 958 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
23
24
25
26
##############################################################################
# Require terraform 0.9.3 or greater
##############################################################################
terraform {
required_version = ">= 0.9.3"
}
##############################################################################
# IBM Cloud Provider
##############################################################################
# See the README for details on ways to supply these values
# Configure the IBM Cloud Provider
provider "ibm" {
bluemix_api_key = "${var.bluemix_api_key}"
softlayer_username = "${var.softlayer_username}"
softlayer_api_key = "${var.softlayer_api_key}"
}
variable bluemix_api_key {
description = "Your IBM Cloud API Key."
}
variable softlayer_username {
description = "Your IBM Cloud Infrastructure (SoftLayer) user name."
}
variable softlayer_api_key {
description = "Your IBM Cloud Infrastructure (SoftLayer) API key."
}