From 098e726fa26adfa0312d735bec34f0800f1c9b08 Mon Sep 17 00:00:00 2001 From: Don Sizemore Date: Mon, 18 Dec 2023 13:54:49 -0500 Subject: [PATCH] #328 add localstack aws templates --- templates/localstack_aws_config.j2 | 2 ++ templates/localstack_aws_credentials.j2 | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 templates/localstack_aws_config.j2 create mode 100644 templates/localstack_aws_credentials.j2 diff --git a/templates/localstack_aws_config.j2 b/templates/localstack_aws_config.j2 new file mode 100644 index 0000000..8a42ed7 --- /dev/null +++ b/templates/localstack_aws_config.j2 @@ -0,0 +1,2 @@ +[default] +region = {{ localstack.region }} diff --git a/templates/localstack_aws_credentials.j2 b/templates/localstack_aws_credentials.j2 new file mode 100644 index 0000000..ab0151c --- /dev/null +++ b/templates/localstack_aws_credentials.j2 @@ -0,0 +1,3 @@ +[default] +aws_access_key_id = {{ localstack.access_key }} +aws_secret_access_key = {{ localstack.secret_access_key }}