From 4a827a07aaee9c16db2761f0b639c4e706e39c53 Mon Sep 17 00:00:00 2001 From: Alejandro Date: Mon, 25 Dec 2023 12:04:36 +0100 Subject: [PATCH] Fix manifest.yaml - Parameter pNISTStandardVersion must be one of AllowedValues 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'