From dc35acd04b942b01f101a3af65d88e11c0bc3023 Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 22 Aug 2022 16:35:14 -0400 Subject: [PATCH] add --- examples/simple/variables.auto.tfvars | 29 +++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 examples/simple/variables.auto.tfvars diff --git a/examples/simple/variables.auto.tfvars b/examples/simple/variables.auto.tfvars new file mode 100644 index 0000000..cb80cc0 --- /dev/null +++ b/examples/simple/variables.auto.tfvars @@ -0,0 +1,29 @@ +image_config = [ + { + enabled = true + dest_path = null + name = "openjdk-8" + source_image = "ubi8/openjdk-8" + source_registry = "registry.access.redhat.com" + source_tag = null + tag = "latest" + }, + { + enabled = true + name = "nginx-118" + dest_path = null + source_image = "ubi8/nginx-118" + source_registry = "registry.access.redhat.com" + source_tag = null + tag = "latest" + }, + { + enabled = true + name = "nodejs-14" + dest_path = null + source_image = "ubi8/nodejs-14" + source_registry = "registry.access.redhat.com" + source_tag = null + tag = "latest" + }, +]