From e06d6152f7c947d960bd8e3a6db950a01a860510 Mon Sep 17 00:00:00 2001 From: Bret Ambrose Date: Thu, 7 Dec 2023 12:22:13 -0800 Subject: [PATCH] Add unencoded custom auth signature secret (#264) Co-authored-by: Bret Ambrose --- builder/actions/setup_cross_ci_crt_environment.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/builder/actions/setup_cross_ci_crt_environment.py b/builder/actions/setup_cross_ci_crt_environment.py index db3efaaa8..f0dc953fd 100644 --- a/builder/actions/setup_cross_ci_crt_environment.py +++ b/builder/actions/setup_cross_ci_crt_environment.py @@ -205,6 +205,8 @@ def _common_setup(self, env): "ci/mqtt5/us/authorizer/signed/tokenkeyname") self._setenv_secret(env, "AWS_TEST_MQTT5_IOT_CORE_SIGNING_AUTHORIZER_TOKEN_SIGNATURE", "ci/mqtt5/us/authorizer/signed/signature") + self._setenv_secret(env, "AWS_TEST_MQTT5_IOT_CORE_SIGNING_AUTHORIZER_TOKEN_SIGNATURE_UNENCODED", + "ci/mqtt5/us/authorizer/signed/signature/unencoded") # JAVA KEYSTORE (Java uses PKCS#8 keys internally, which currently only Linux supports ATM) if (self.is_linux == True): @@ -291,6 +293,8 @@ def _common_setup(self, env): "ci/mqtt5/us/authorizer/signed/tokenkeyname") self._setenv_secret(env, "AWS_TEST_MQTT311_IOT_CORE_SIGNING_AUTHORIZER_TOKEN_SIGNATURE", "ci/mqtt5/us/authorizer/signed/signature") + self._setenv_secret(env, "AWS_TEST_MQTT311_IOT_CORE_SIGNING_AUTHORIZER_TOKEN_SIGNATURE_UNENCODED", + "ci/mqtt5/us/authorizer/signed/signature/unencoded") # JAVA KEYSTORE (Java uses PKCS#8 keys internally, which currently only Linux supports ATM) if (self.is_linux == True):