From ec01ffa91b5658f80be6b7756fffadf69fbe466e Mon Sep 17 00:00:00 2001 From: Rickard von Essen Date: Fri, 14 Jul 2017 07:58:45 +0200 Subject: [PATCH] cloudstack: Moved several settins to the optional section Moved `instance_name`, `template_name`, and `template_display_name` to the optional section since the have default values. --- .../source/docs/builders/cloudstack.html.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/website/source/docs/builders/cloudstack.html.md b/website/source/docs/builders/cloudstack.html.md index f6a5fa9dd..b986cc7f1 100644 --- a/website/source/docs/builders/cloudstack.html.md +++ b/website/source/docs/builders/cloudstack.html.md @@ -42,9 +42,6 @@ builder. connect to the instance. Usually this will be the NAT address of your current location. Only required when `use_local_ip_address` is `false`. -- `instance_name` (string) - The name of the instance. Defaults to - "packer-UUID" where UUID is dynamically generated. - - `network` (string) - The name or ID of the network to connect the instance to. @@ -59,12 +56,6 @@ builder. - `source_template` (string) - The name or ID of the template used as base template for the instance. This option is mutual explusive with `source_iso`. -- `template_name` (string) - The name of the new template. Defaults to - "packer-{{timestamp}}" where timestamp will be the current time. - -- `template_display_text` (string) - The display text of the new template. - Defaults to the `template_name`. - - `template_os` (string) - The name or ID of the template OS for the new template that will be created. @@ -111,6 +102,9 @@ builder. access the instance. The SSH key pair is assumed to be already available within CloudStack. +- `instance_name` (string) - The name of the instance. Defaults to + "packer-UUID" where UUID is dynamically generated. + - `project` (string) - The name or ID of the project to deploy the instance to. - `public_ip_address` (string) - The public IP address or it's ID used for @@ -120,9 +114,15 @@ builder. - `ssl_no_verify` (boolean) - Set to `true` to skip SSL verification. Defaults to `false`. +- `template_display_text` (string) - The display text of the new template. + Defaults to the `template_name`. + - `template_featured` (boolean) - Set to `true` to indicate that the template is featured. Defaults to `false`. +- `template_name` (string) - The name of the new template. Defaults to + "packer-{{timestamp}}" where timestamp will be the current time. + - `template_public` (boolean) - Set to `true` to indicate that the template is available for all accounts. Defaults to `false`.