-
Notifications
You must be signed in to change notification settings - Fork 19
/
main.tf
57 lines (54 loc) · 1.88 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
##############################################################################
# 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
provider "ibmcloud" {
bluemix_api_key = "${var.bxapikey}"
softlayer_username = "${var.slusername}"
softlayer_api_key = "${var.slapikey}"
}
##############################################################################
# IBM SSH Key: For connecting to VMs
##############################################################################
resource "ibmcloud_infra_ssh_key" "ssh_key" {
label = "${var.key_label}"
notes = "${var.key_note}"
# Public key, so this is completely safe
public_key = "${var.public_key}"
}
##############################################################################
# Variables
##############################################################################
variable bxapikey {
description = "Your Bluemix API Key."
}
variable slusername {
description = "Your Softlayer username."
}
variable slapikey {
description = "Your Softlayer API Key."
}
variable datacenter {
description = "The datacenter to create resources in."
}
variable public_key {
description = "Your public SSH key material."
}
variable key_label {
description = "A label for the SSH key that gets created."
}
variable key_note {
description = "A note for the SSH key that gets created."
}
##############################################################################
# Outputs
##############################################################################
output "ssh_key_id" {
value = "${ibmcloud_infra_ssh_key.ssh_key.id}"
}