From 72855cb579a604d30e41d2285c455e431f5573d0 Mon Sep 17 00:00:00 2001 From: Christy Norman Date: Tue, 3 May 2022 16:25:26 -0500 Subject: [PATCH] power vs: fix terraform vars looks like when i added descriptions to all these files i somehow bungled a couple, and somehow the terraform provider version isn't new enough. how that was missed is a complete mystery Signed-off-by: Christy Norman --- data/data/powervs/cluster/bootstrap/variables.tf | 12 ++++++------ data/data/powervs/cluster/master/lb/variables.tf | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/data/data/powervs/cluster/bootstrap/variables.tf b/data/data/powervs/cluster/bootstrap/variables.tf index 678573e2f0..c2c1bda6df 100644 --- a/data/data/powervs/cluster/bootstrap/variables.tf +++ b/data/data/powervs/cluster/bootstrap/variables.tf @@ -1,3 +1,8 @@ +variable "api_key" { + type = string + description = "IBM Cloud API key associated with user's identity" +} + variable "memory" { type = string description = "The amount of memory to assign to each node in GB." @@ -28,11 +33,6 @@ variable "image_id" { description = "The ID of the Power VS boot image for the nodes." } -variable "network_name" { - type = string - description = "The name of the Power VS network." -} - variable "proc_type" { type = string description = "The type of processor to be assigned (e.g. capped, dedicated, shared) to the nodes." @@ -48,7 +48,7 @@ variable "cluster_id" { description = "The ID created by the installer to uniquely identify the created cluster." } -variable "key_id" { +variable "ssh_key_id" { type = string description = "The SSH Key ID." } diff --git a/data/data/powervs/cluster/master/lb/variables.tf b/data/data/powervs/cluster/master/lb/variables.tf index 3cfda4fe0c..a454007466 100644 --- a/data/data/powervs/cluster/master/lb/variables.tf +++ b/data/data/powervs/cluster/master/lb/variables.tf @@ -1,5 +1,5 @@ variable "master_ips" { - type = string + type = list description = "The IP addresses of the master nodes." }