From 7ee50ff9264dd25be4a76bb9d0d6554dd009dc7c Mon Sep 17 00:00:00 2001 From: Maciej Skierkowski Date: Mon, 18 Dec 2017 15:12:04 -0800 Subject: [PATCH] Should be OVF As a side note I will point out that the bento projects will use vagrant to package up the image into a .box file. But using OVF as we are assuming not to be using vagrant. --- .../guides/packer-on-cicd/upload-images-to-artifact.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/guides/packer-on-cicd/upload-images-to-artifact.html.md b/website/source/guides/packer-on-cicd/upload-images-to-artifact.html.md index 9916fd871..ca0b1a2d8 100644 --- a/website/source/guides/packer-on-cicd/upload-images-to-artifact.html.md +++ b/website/source/guides/packer-on-cicd/upload-images-to-artifact.html.md @@ -41,5 +41,5 @@ In your build configuration in TeamCity Server, add an additional **Build Step: Command Line** and set the **Script content** field to the following: ```shell -awscli s3 cp . s3://bucket/ --exclude “*” --include “*.iso” +awscli s3 cp . s3://bucket/ --exclude “*” --include “*.ovf" ```