From b642d22da7dc06e1cc8fce52e78b7f37ea657a29 Mon Sep 17 00:00:00 2001 From: tim_clegg <10459168+timclegg@users.noreply.github.com> Date: Tue, 10 Aug 2021 08:43:29 -0600 Subject: [PATCH 1/2] fix: removing SSH public key from ORM schema --- terraform/schema.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/terraform/schema.yaml b/terraform/schema.yaml index 0e1ff3e..12b4df2 100644 --- a/terraform/schema.yaml +++ b/terraform/schema.yaml @@ -21,7 +21,6 @@ variableGroups: - title: "Configuration" variables: - ${redbull_compartment} - - ${ssh_public_key} variables: redbull_compartment: @@ -29,9 +28,4 @@ variables: title: "Compartment Name" description: "The name of the compartment that will be created." required: true - default: "redbullhol" - ssh_public_key: - title: "Compute SSH Public Key" - description: "The public key to install on the compute for SSH access." - type: oci:core:ssh:publickey - required: true \ No newline at end of file + default: "redbullhol" \ No newline at end of file From 3caecd4cdb345b61e1295e93437f2e1af74c49cc Mon Sep 17 00:00:00 2001 From: tim_clegg <10459168+timclegg@users.noreply.github.com> Date: Tue, 10 Aug 2021 11:09:01 -0600 Subject: [PATCH 2/2] fix: Adding back SSH key (optional) --- terraform/schema.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/terraform/schema.yaml b/terraform/schema.yaml index 12b4df2..594855f 100644 --- a/terraform/schema.yaml +++ b/terraform/schema.yaml @@ -21,6 +21,7 @@ variableGroups: - title: "Configuration" variables: - ${redbull_compartment} + - ${ssh_public_key} variables: redbull_compartment: @@ -28,4 +29,9 @@ variables: title: "Compartment Name" description: "The name of the compartment that will be created." required: true - default: "redbullhol" \ No newline at end of file + default: "redbullhol" + ssh_public_key: + title: "Compute SSH Public Key" + description: "The public key to install on the compute for SSH access." + type: oci:core:ssh:publickey + required: false \ No newline at end of file