packer/website/source/docs
Arthur Burkart 5b59f56cdb Adds force_delete_snapshot flag
This PR adds the ability for Packer to clean up snapshots in addition to
deregistering AMIs at build time.

To test this, I used the following `test.json` file:

```json
{
  "builders": [
    {
      "type": "amazon-ebs",
      "region": "us-east-1",
      "source_ami": "ami-fce3c696",
      "ami_name": "packer-test",
      "instance_type": "m3.medium",
      "ssh_username": "ubuntu",
      "vpc_id": "some-vpc-id",
      "subnet_id": "some-subnet-routed-through-igw",
      "security_group_id": "some-security-group-with-port-22-access",
      "force_delete_snapshot": true
    }
  ],
  "provisioners": [
    {
      "type": "shell-local",
      "command": "echo 'hello'"
    }
  ]
}

```

I appreciate any constructive feedbakc that can be given. Cheers!
2016-11-29 23:39:36 -05:00
..
basics remove custom command documentation. 2016-10-13 16:16:48 -07:00
builders Adds force_delete_snapshot flag 2016-11-29 23:39:36 -05:00
command-line Improve -on-error descriptions 2016-09-18 03:00:36 +00:00
extend remove custom command documentation. 2016-10-13 16:16:48 -07:00
machine-readable Change .markdown to .md because it's shorter 2016-03-11 17:06:36 -08:00
other Improve clarity of environment vars doc PACKER_LOG setting 2016-10-26 09:54:05 -04:00
post-processors Merge pull request #4192 from mitchellh/manifestoutput 2016-11-22 12:51:27 -08:00
provisioners Added support for passing arguments to salt-call. 2016-11-11 15:15:16 +01:00
templates Removed default value for ssh_username 2016-11-17 22:30:34 +01:00
index.html.md Change .markdown to .md because it's shorter 2016-03-11 17:06:36 -08:00
installation.html.md Added a missing the 2016-09-12 07:46:47 +02:00