From 229ab20e5516e16f3afe22b6d7a5a40163bb55d3 Mon Sep 17 00:00:00 2001 From: RouxAntoine Date: Wed, 29 May 2024 00:23:45 +0200 Subject: [PATCH] Initial commit --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7f186fc --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# terraform-library + +This repository contained a set of terraform reusable library to deploy an application into kubernetes cluster. + +usage example: + +```hcl +module "image-uploader-mock" { + source = "git::ssh://gitolite@antoine-roux.tk:virtualization/terraform-library.git?depth=1&ref=main" + application_name = "wiremock" + namespace = local.default_namespace + image = { + name = "container.localdomain/wiremock" + } + ports = [ + { + container_port = 8083 + expose = true + } + ] +} + +``` +