From 75422aa60eab439e4a2be12a004ce3243329ef67 Mon Sep 17 00:00:00 2001 From: Alejandro Date: Thu, 4 Jan 2024 22:04:00 +0100 Subject: [PATCH] Fix manifest.yaml - Parameter pNISTStandardVersion must be one of AllowedValues (#198) With this version of the manifest.yaml appears the following error: "Parameter 'pNISTStandardVersion' must be one of AllowedValues" The default value is "false" and the AllowedValues: [5.0.0] --- .../customizations_for_aws_control_tower/manifest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws_sra_examples/easy_setup/customizations_for_aws_control_tower/manifest.yaml b/aws_sra_examples/easy_setup/customizations_for_aws_control_tower/manifest.yaml index efa2d66b..528e96dc 100644 --- a/aws_sra_examples/easy_setup/customizations_for_aws_control_tower/manifest.yaml +++ b/aws_sra_examples/easy_setup/customizations_for_aws_control_tower/manifest.yaml @@ -232,7 +232,7 @@ resources: - parameter_key: pEnableNISTStandard parameter_value: 'false' - parameter_key: pNISTStandardVersion - parameter_value: 'false' + parameter_value: '5.0.0' - parameter_key: pRegionLinkingMode parameter_value: 'SPECIFIED_REGIONS'