From a203230822ae7a89ed8f0537e2267c4d9d762e89 Mon Sep 17 00:00:00 2001 From: Stephen James Date: Wed, 17 Jan 2024 16:43:20 +0000 Subject: [PATCH] Update Parameter tier for terraform outputs During the publish terraform outputs operation the script could fail because the data has exceeded the standard tier of 4KB. Specifying "Intelligent-Tiering" for this parameter so that it will default to "Advanced" 8KB when necessary. --- scripts/publish_terraform_outputs.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/publish_terraform_outputs.sh b/scripts/publish_terraform_outputs.sh index 4288cfc..78f068c 100755 --- a/scripts/publish_terraform_outputs.sh +++ b/scripts/publish_terraform_outputs.sh @@ -8,4 +8,5 @@ aws ssm put-parameter --name "/moj-network-access-control/terraform/$ENV/outputs --description "Terraform outputs that other pipelines or processes depend on" \ --value "$terraform_outputs" \ --type String \ + --tier Intelligent-Tiering \ --overwrite