AWS:调用CreateStack操作时发生客户端错误(ValidationError):ParameterKey的ParameterValue ...是必需的

时间:2014-02-28 22:16:01

标签: powershell amazon-web-services aws-powershell

我正在尝试创建一个PowerShell脚本,其中包括创建AWS CloudFormation堆栈。我遇到了aws cloudformation create-stack命令的问题,但它似乎没有拿起参数。这是给我带来麻烦的片段:

$version = Read-Host 'What version is this?'
aws cloudformation create-stack --stack-name Cloud-$version --template-body C:\awsdeploy\MyCloud.template --parameters ParameterKey=BuildNumber,ParameterValue=$version

我收到的错误是:

aws : 
At C:\awsdeploy\Deploy.ps1:11 char:1
+ aws cloudformation create-stack --stack-name Cloud-$version --template-bo ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo          : NotSpecified: (:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError

A client error (ValidationError) occurred when calling the CreateStack operation: ParameterValue for ParameterKey BuildNumber is required

我知道CloudFormation脚本没问题,因为我可以通过AWS浏览器执行它而不会出现问题。参数部分如下所示:

"Parameters" : {
    "BuildNumber" : { "Type" : "Number" }
  },

我尝试了以下内容,但似乎没有任何帮助:

  • 用静态值替换$ version
  • 将参数类型从Number更改为String
  • 尝试以JSON格式传递参数列表

没有任何骰子,同样的错误。这就像是因为某些原因而不接受这些参数。有什么想法吗?

1 个答案:

答案 0 :(得分:4)

我打赌,Powershell在解析该逗号时遇到困难,之后失去了ParameterValue。您可能希望尝试将--parameter后的整个部分包装在一个字符串中(双引号,因此$version仍会解析):

aws cloudformation create-stack --stack-name Cloud-$version --template-body C:\awsdeploy\MyCloud.template --parameters "ParameterKey=BuildNumber,ParameterValue=$version"

或者,如果不这样做,请尝试running the line explicitly in the cmd environment


如果您对替代解决方案感兴趣,AWS已在名为AWS Tools for Powershell的单独实用程序中实施其命令行工具。 create-stack映射到New-CFNStack,如本文档中所示:New-CFNStack Docs

看起来这将是等效的电话:

$p1 = New-Object -Type Amazon.CloudFormation.Model.Parameter 
$p1.ParameterKey = "BuildNumber" 
$p1.ParameterValue = "$version" 

New-CFNStack -StackName "cloud-$version" ` 
-TemplateBody "C:\awsdeploy\MyCloud.template" ` 
-Parameters @( $p1 )