我試圖創建一個PowerShell腳本,其中包括創建AWS CloudFormation堆棧。我在使用aws cloudformation create-stack命令時遇到了麻煩,但它似乎沒有提取參數。下面是摘錄給我找麻煩:AWS:調用CreateStack操作時發生客戶端錯誤(ValidationError):需要ParameterKey ...的ParameterValue
$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" }
},
我試過以下,其中沒有一個似乎幫助:
- 用一個靜態值
- 改變從數參數類型替換$版本爲String
- 試圖通過JSON格式
上任何一個沒有骰子,同樣的參數列表錯誤。這就像它只是因爲某些原因不接受參數。有任何想法嗎?
- 安東尼感謝輸入,這讓我在正確的方向。該命令工作,但要求我使用-TemplateURL設置爲上傳到S3位置的模板,如下所示:'New-CFNStack -StackName「cloud-$ version」 -TemplateURL「https://s3.amazonaws.com/。 ../my.template「 -Parameters @($ p1)' – Jayoaichen