From 3d7df8a1d57aca3ab2762c2b5ef747b50b12ef13 Mon Sep 17 00:00:00 2001 From: Stefan Oehrli Date: Wed, 14 Oct 2020 09:49:07 +0200 Subject: [PATCH] update variable description --- doc/variables.md | 2 +- examples/variables.tf | 2 +- variables.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/variables.md b/doc/variables.md index 4f682fb..c077a5a 100644 --- a/doc/variables.md +++ b/doc/variables.md @@ -25,7 +25,7 @@ Variables for the configuration of the terraform module, defined in [variables]( | `bastion_bootstrap` | Bootstrap script to provision the bastion host. | | n/a | | `bastion_dns_registration` | Whether to register the bastion host in DNS zone. | ftrue/false | true | | `bastion_enabled` | Whether to create the bastion host or not. | true/false | false | -| `bastion_image_id` | A Provide a custom image id for the bastion host or leave as OEL. | OCID | OEL | +| `bastion_image_id` | Provide a custom image id for the bastion host or leave as OEL (Oracle Enterprise Linux). | OCID | OEL | | `bastion_name` | A Name portion of bastion host. | | bastion | | `bastion_os_version` | Define the default OS version for Oracle Linux. This is used to identify the default `bastion_image_id` | | 7.8 | | `bastion_shape` | The shape of bastion instance. | | VM.Standard.E2.1 | diff --git a/examples/variables.tf b/examples/variables.tf index f3d6a85..f221733 100644 --- a/examples/variables.tf +++ b/examples/variables.tf @@ -79,7 +79,7 @@ variable "bastion_name" { } variable "bastion_image_id" { - description = "Provide a custom image id for the bastion host or leave as Autonomous." + description = "Provide a custom image id for the bastion host or leave as OEL (Oracle Enterprise Linux)." default = "OEL" type = string } diff --git a/variables.tf b/variables.tf index f3d6a85..f221733 100644 --- a/variables.tf +++ b/variables.tf @@ -79,7 +79,7 @@ variable "bastion_name" { } variable "bastion_image_id" { - description = "Provide a custom image id for the bastion host or leave as Autonomous." + description = "Provide a custom image id for the bastion host or leave as OEL (Oracle Enterprise Linux)." default = "OEL" type = string }