Skip to content

Commit

Permalink
fix: update the ssh key related variable descriptions for the OCP pat…
Browse files Browse the repository at this point in the history
…tern (#586)
  • Loading branch information
ocofaigh authored Sep 27, 2023
1 parent 998c9be commit 23c6af4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -1002,6 +1002,10 @@
"hidden": true,
"key": "ssh_public_key"
},
{
"hidden": true,
"key": "existing_ssh_key_name"
},
{
"custom_config": {
"config_constraints": {
Expand Down
4 changes: 2 additions & 2 deletions patterns/roks/module/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ variable "vpn_firewall_type" {
}

variable "ssh_public_key" {
description = "Public SSH Key. Must be an RSA key with a key size of either 2048 bits or 4096 bits (recommended) - See https://cloud.ibm.com/docs/vpc?topic=vpc-ssh-keys. Must not already exists in the deployment region. Use only if provisioning F5 or Bastion Host."
description = "A public SSH key that does not exist in the deployment region. Used only if you provision F5 or Bastion Host. Must be an RSA key with a key size of either 2048 or 4096 bits (recommended). See https://cloud.ibm.com/docs/vpc?topic=vpc-ssh-keys. To use an existing key, specify a value in the `existing_ssh_key_name` variable instead."
type = string
default = null
validation {
Expand All @@ -217,7 +217,7 @@ variable "ssh_public_key" {
}
variable "existing_ssh_key_name" {
description = "The name of the public ssh key which already exists."
description = "The name of a public SSH key that exists in the deployment region. Used only if you provision F5 or Bastion Host. To add a SSH key, use the `ssh_public_key` variable instead."
type = string
default = null
}
Expand Down
4 changes: 2 additions & 2 deletions patterns/roks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ variable "vpn_firewall_type" {
}

variable "ssh_public_key" {
description = "Public SSH Key. Must be an RSA key with a key size of either 2048 bits or 4096 bits (recommended) - See https://cloud.ibm.com/docs/vpc?topic=vpc-ssh-keys. Must not already exists in the deployment region. Use only if provisioning F5 or Bastion Host."
description = "A public SSH key that does not exist in the deployment region. Used only if you provision F5 or Bastion Host. Must be an RSA key with a key size of either 2048 or 4096 bits (recommended). See https://cloud.ibm.com/docs/vpc?topic=vpc-ssh-keys. To use an existing key, specify a value in the `existing_ssh_key_name` variable instead."
type = string
default = null
validation {
Expand All @@ -231,7 +231,7 @@ variable "ssh_public_key" {
}
variable "existing_ssh_key_name" {
description = "The name of the public ssh key which already exists."
description = "The name of a public SSH key that exists in the deployment region. Used only if you provision F5 or Bastion Host. To add a SSH key, use the `ssh_public_key` variable instead."
type = string
default = null
}
Expand Down

0 comments on commit 23c6af4

Please sign in to comment.