3

我正在研究通过 AWS cloudformation 部署一致性包的概念证明,但我被错误“为不需要它们的模板指定的参数值”所困扰。我使用的配置规则确实需要一个参数。附上代码。我还用 cfn-lint 测试了模板,没有收到任何反馈/错误。

我的模板是“简单”及以下:

Parameters:
  ElbPredefinedSecurityPolicySslCheckParamPredefinedPolicyName:
    Default: ELBSecurityPolicy-2016-08
    Type: String
Resources:
  TestingConformancePack:
    Type: AWS::Config::ConformancePack
    Properties:
      ConformancePackName: TestCP
      ConformancePackInputParameters:
      -
        ParameterName: PredefinedPolicyName
        ParameterValue: !Ref ElbPredefinedSecurityPolicySslCheckParamPredefinedPolicyName
      TemplateBody: |
        Resources:
          ElbPredefinedSecurityPolicySslCheck:
            Properties:
              ConfigRuleName: elb-predefined-security-policy-ssl-check
              InputParameters:
                predefinedPolicyName:
                  Ref: ElbPredefinedSecurityPolicySslCheckParamPredefinedPolicyName
              Scope:
                ComplianceResourceTypes:
                - AWS::ElasticLoadBalancing::LoadBalancer
              Source:
                Owner: AWS
                SourceIdentifier: ELB_PREDEFINED_SECURITY_POLICY_SSL_CHECK
            Type: AWS::Config::ConfigRule
4

2 回答 2

5

原因是您将参数(在 中指定的参数)传递给不包含部分ConformancePackInputParameters的 CloudFormation 模板(在 中指定的参数),因此不需要任何参数。为了解决这个问题,您需要向内部 CloudFormation 模板添加一个参数,然后您可以参考:TemplateBodyParameterspredefinedPolicyName

以下模板适用于我:

Parameters:
  ElbPredefinedSecurityPolicySslCheckParamPredefinedPolicyName:
    Default: ELBSecurityPolicy-2016-08
    Type: String
Resources:
  TestingConformancePack:
    Type: AWS::Config::ConformancePack
    Properties:
      ConformancePackName: TestCP
      ConformancePackInputParameters:
      -
        ParameterName: PredefinedPolicyName
        ParameterValue: !Ref ElbPredefinedSecurityPolicySslCheckParamPredefinedPolicyName
      TemplateBody: |
        Parameters:
          PredefinedPolicyName:
            Type: String
        Resources:
          ElbPredefinedSecurityPolicySslCheck:
            Properties:
              ConfigRuleName: elb-predefined-security-policy-ssl-check
              InputParameters:
                predefinedPolicyName:
                  Ref: PredefinedPolicyName
              Scope:
                ComplianceResourceTypes:
                - AWS::ElasticLoadBalancing::LoadBalancer
              Source:
                Owner: AWS
                SourceIdentifier: ELB_PREDEFINED_SECURITY_POLICY_SSL_CHECK
            Type: AWS::Config::ConfigRule
于 2020-11-12T09:16:36.547 回答
0

我正在使用 cloudformation 制作一个测试用例资源,并偶然发现了同样的错误。“为不需要它们的模板指定的参数值。”</p>

由于这是一个测试用例,我根本没有使用任何参数。上面的答案有助于我理解它必须对参数做一些事情。即使您没有使用任何参数,在部署 cfn 时也会传递一些参数。

默认情况下,cloudformation 也将 env 作为参数发送,该参数需要像这样的参数。(以下 JSON 代码片段)

"Parameters": {
        "env": {
            "Type": "String"
        }
    },

希望这会有所帮助。

于 2021-05-19T12:32:38.483 回答