packer-cn/builder/digitalocean
Adrien Delorme 40947c2bf6
HCL2: generate hcl tags with go-cty tags too (#9306)
This will allow to generate the config files:

```go
package main

import (
	"fmt"

	"github.com/hashicorp/hcl/v2/gohcl"
	"github.com/hashicorp/hcl/v2/hclwrite"
	"github.com/hashicorp/packer/builder/alicloud/ecs"
)

func main() {
	name := "name"
	app := ecs.FlatConfig{
		AlicloudImageName: &name,
		ECSSystemDiskMapping: &ecs.FlatAlicloudDiskDevice{
			DiskName: &name,
		},
	}

	f := hclwrite.NewEmptyFile()
	block := gohcl.EncodeAsBlock(&app, `source "something" "something"`)
	f.Body().AppendBlock(block)
	fmt.Printf("%s", f.Bytes())
}

```

Will output:

```
source "something" "something" {
  packer_user_variables      = null
  packer_sensitive_variables = null
  image_name                 = "name"
  image_share_account        = null
  image_unshare_account      = null
  image_copy_regions         = null
  image_copy_names           = null
  tags                       = null
  tag                        = null
  system_disk_mapping        = { disk_category = null, disk_delete_with_instance = null, disk_descri
ption = null, disk_device = null, disk_encrypted = null, disk_name = "name", disk_size = null, disk_
snapshot_id = null }
  image_disk_mappings        = null
  ssh_remote_tunnels         = null
  ssh_local_tunnels          = null
  ssh_public_key             = null
  ssh_private_key            = null
}
```

This is a good first step for #9015 and #9282 

fix #9304
2020-05-28 11:19:00 +02:00
..
artifact.go Sharing info with post-processors via artifact (#8632) 2020-01-30 11:27:58 +01:00
artifact_test.go Sharing info with post-processors via artifact (#8632) 2020-01-30 11:27:58 +01:00
builder.go allow user to set winrm_host override like we do ssh_host override 2020-01-30 15:22:22 -08:00
builder_acc_test.go Use constant and move check to template generator. 2020-05-13 13:28:44 -04:00
builder_test.go add an extra string array to the Prepare() return values in the builder interfaces; this sets up the ability for builders to give the provisioners custom user-accessible build-time variables. 2019-12-16 21:23:05 -08:00
config.go were rendering yay 2020-04-07 17:50:47 -04:00
config.hcl2spec.go HCL2: generate hcl tags with go-cty tags too (#9306) 2020-05-28 11:19:00 +02:00
step_create_droplet.go Move to a new func to make testable. 2020-05-13 13:29:22 -04:00
step_create_droplet_test.go Move to a new func to make testable. 2020-05-13 13:29:22 -04:00
step_create_ssh_key.go builder/digitalocean: fix dropped error on RSA key generation 2019-11-08 10:35:48 -08:00
step_droplet_info.go Change back to make sure all durations are a time.Duration 2019-10-31 16:12:07 +01:00
step_power_off.go Change back to make sure all durations are a time.Duration 2019-10-31 16:12:07 +01:00
step_shutdown.go Change back to make sure all durations are a time.Duration 2019-10-31 16:12:07 +01:00
step_snapshot.go builder/digitalocean: add snapshotTimeout option 2019-07-04 16:25:42 +02:00
token_source.go builder/digitalocean: switch to new lib 2015-06-10 14:02:06 -07:00
wait.go Add DigitalOcean post-processor. 2018-11-29 21:00:57 -05:00