3

我正在尝试创建一个 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 格式传递参数列表

这些都没有骰子,同样的错误。就像它出于某种原因不接受参数一样。有任何想法吗?

4

1 回答 1

4

我敢打赌,Powershell 难以解析该逗号并在之后丢失 ParameterValue。您可能想尝试将整个部分包装--parameter 在一个字符串中(双引号,所以$version仍然可以解析):

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

或者,如果失败,请尝试在 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 )
于 2014-02-28T22:24:24.973 回答