From 7d53db2feead5465a4af4f22e014db1e5286caa8 Mon Sep 17 00:00:00 2001 From: "hkantare@in.ibm.com" Date: Wed, 25 Sep 2019 11:07:03 +0530 Subject: [PATCH] Update description and remove default for ssh key --- provider.tf | 1 + variables.tf | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/provider.tf b/provider.tf index 44f9635..b2b33c4 100644 --- a/provider.tf +++ b/provider.tf @@ -11,5 +11,6 @@ variable "region" { provider "ibm" { ibmcloud_api_key = "${var.ibmcloud_api_key}" + ibmcloud_timeout = 300 generation = "1" } diff --git a/variables.tf b/variables.tf index 30d328f..6176388 100644 --- a/variables.tf +++ b/variables.tf @@ -1,6 +1,5 @@ variable "ssh_public_key" { - default = "" description = "The [public SSH key](https://cloud.ibm.com/docs/vpc-on-classic-vsi?topic=vpc-on-classic-vsi-ssh-keys) that you use to access your VPC virtual servers. The public key is saved to an `id_rsa.pub` file in the `.ssh` subdirectory of your home directory." } @@ -11,7 +10,7 @@ variable "ssh_key_name" { variable "num_vms_per_VPC" { default = 1 - description = "The number of virtual servers to create in each VPC." + description = "The number of virtual servers to create in each VPC. The value should be non-zero, positive value." } variable "image" {