From 968bd7aa18a2689e9f9917b75fc2ee343e5939ec Mon Sep 17 00:00:00 2001 From: badra001 Date: Fri, 16 Sep 2022 12:32:03 -0400 Subject: [PATCH] add images, remove copy_images --- .../efk/{copy_images.tf => copy_images.tf.old} | 0 examples/efk/images.tf | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+) rename examples/efk/{copy_images.tf => copy_images.tf.old} (100%) create mode 100644 examples/efk/images.tf diff --git a/examples/efk/copy_images.tf b/examples/efk/copy_images.tf.old similarity index 100% rename from examples/efk/copy_images.tf rename to examples/efk/copy_images.tf.old diff --git a/examples/efk/images.tf b/examples/efk/images.tf new file mode 100644 index 0000000..e0f84da --- /dev/null +++ b/examples/efk/images.tf @@ -0,0 +1,18 @@ +module "images" { + source = "git@github.e.it.census.gov:terraform-modules/aws-ecr-copy-images.git" + + application_list = [] + application_name = format("eks/%v", var.cluster_name) + image_config = var.image_config + tags = {} + + ### optional + ## account_alias = "" + ## account_id = "" + ## destination_password = "" + ## destination_username = "" + ## override_prefixes = {} + ## region = "" + ## source_password = "" + ## source_username = "" +}