1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 15:47:14 +01:00

Merge pull request #5863 from clnperez/tfvars-tfprovider

Power VS: fix terraform vars
This commit is contained in:
OpenShift Merge Robot
2022-05-05 15:54:06 -04:00
committed by GitHub
2 changed files with 7 additions and 7 deletions

View File

@@ -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."
}

View File

@@ -1,5 +1,5 @@
variable "master_ips" {
type = string
type = list
description = "The IP addresses of the master nodes."
}