2

AWS新品嚐試將一個堆棧與CloudFormation模板結合在一起。在CloudFormation模板中引用Glacier作爲資源?

堆棧將有兩個EC2實例,每個實例都運行一個Windows服務。一些存儲將在S3上,一些存儲在AWS Glacier上。

我無法找到關於如何在CF模板中添加Glacier作爲資源的示例或說明。

我錯過了什麼,這是不可能通過CF模板?

以前有沒有人做過這件事,如果有可能的話,有人可以提供樣品嗎?

謝謝。

回答

2

截至2013年2月27日,CloudFormation不支持Glacier。

如果/當它,你會看到冰川的CloudFormation資源類型的文檔在這裏顯示:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html

自動遷移到冰川的任何支持S3應該顯示在這裏:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket.html

要註冊您的願望亞馬遜此功能工作,在這個論壇主題添加+1評論:

https://forums.aws.amazon.com/thread.jspa?threadID=117947

0

AWS CloudFormation添加了對自定義的資源,在這裏你可以使用AWS LAMBDA功能做創建CloudFormation本身不支持資源的工作支持。在CloudFormation模板文件中的資源類型將結束是AWS :: CloudFormation :: CustomResource定製:: string的

欲瞭解更多信息,請查看這些官方AWS文檔:

  1. http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html?shortFooter=true
  2. http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-custom-resources-lambda.html?shortFooter=true