From 0c956e511d310db231729ae57cbcd5f65c51c9e9 Mon Sep 17 00:00:00 2001 From: Jim Wild Date: Thu, 11 Jul 2024 13:59:05 +0000 Subject: [PATCH 1/2] Add missing parameter --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 638b3d7c5..36e7f34c9 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,8 @@ sam-deploy: guard-AWS_DEFAULT_PROFILE guard-stack_name sam deploy \ --stack-name $$stack_name \ --parameter-overrides \ - EnableSplunk=false + EnableSplunk=false \ + DeployCheckPrescriptionStatusUpdate=true sam-delete: guard-AWS_DEFAULT_PROFILE guard-stack_name sam delete --stack-name $$stack_name From d84bd7387ad8a646b548fd17c6698dde52d2faef Mon Sep 17 00:00:00 2001 From: Jim Wild Date: Fri, 12 Jul 2024 11:40:41 +0000 Subject: [PATCH 2/2] Fix sam-sync --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 36e7f34c9..965b8ceca 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,8 @@ sam-sync: guard-AWS_DEFAULT_PROFILE guard-stack_name compile --watch \ --template-file SAMtemplates/main_template.yaml \ --parameter-overrides \ - EnableSplunk=false + EnableSplunk=false \ + DeployCheckPrescriptionStatusUpdate=true sam-deploy: guard-AWS_DEFAULT_PROFILE guard-stack_name sam deploy \